Clover icon

Google Sitemap Module 2.2.2

  1. Project Clover database Fri Dec 12 2014 14:58:23 CET
  2. Package info.magnolia.module.googlesitemap.setup

File GoogleSiteMapVersionHandlerTest.java

 

Code metrics

0
65
9
1
187
116
9
0.14
7.22
9
1

Classes

Class Line # Actions
GoogleSiteMapVersionHandlerTest 64 65 0% 9 0
1.0100%
 

Contributing tests

This file is covered by 4 tests. .

Source view

1    /**
2    * This file Copyright (c) 2013-2014 Magnolia International
3    * Ltd. (http://www.magnolia-cms.com). All rights reserved.
4    *
5    *
6    * This file is dual-licensed under both the Magnolia
7    * Network Agreement and the GNU General Public License.
8    * You may elect to use one or the other of these licenses.
9    *
10    * This file is distributed in the hope that it will be
11    * useful, but AS-IS and WITHOUT ANY WARRANTY; without even the
12    * implied warranty of MERCHANTABILITY or FITNESS FOR A
13    * PARTICULAR PURPOSE, TITLE, or NONINFRINGEMENT.
14    * Redistribution, except as permitted by whichever of the GPL
15    * or MNA you select, is prohibited.
16    *
17    * 1. For the GPL license (GPL), you can redistribute and/or
18    * modify this file under the terms of the GNU General
19    * Public License, Version 3, as published by the Free Software
20    * Foundation. You should have received a copy of the GNU
21    * General Public License, Version 3 along with this program;
22    * if not, write to the Free Software Foundation, Inc., 51
23    * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
24    *
25    * 2. For the Magnolia Network Agreement (MNA), this file
26    * and the accompanying materials are made available under the
27    * terms of the MNA which accompanies this distribution, and
28    * is available at http://www.magnolia-cms.com/mna.html
29    *
30    * Any modifications to this file must keep this entire header
31    * intact.
32    *
33    */
34    package info.magnolia.module.googlesitemap.setup;
35   
36    import static info.magnolia.test.hamcrest.NodeMatchers.*;
37    import static org.hamcrest.MatcherAssert.assertThat;
38    import static org.junit.Assert.*;
39   
40    import info.magnolia.context.MgnlContext;
41    import info.magnolia.jcr.util.NodeTypes;
42    import info.magnolia.jcr.util.NodeUtil;
43    import info.magnolia.module.ModuleManagementException;
44    import info.magnolia.module.ModuleVersionHandler;
45    import info.magnolia.module.ModuleVersionHandlerTestCase;
46    import info.magnolia.module.googlesitemap.GoogleSiteMapConfiguration;
47    import info.magnolia.module.googlesitemap.app.subapp.sitemapdetail.contentviews.formatter.FolderNameColumnFormatter;
48    import info.magnolia.module.model.Version;
49    import info.magnolia.repository.RepositoryConstants;
50   
51    import java.util.Arrays;
52    import java.util.List;
53   
54    import javax.jcr.Node;
55    import javax.jcr.NodeIterator;
56    import javax.jcr.RepositoryException;
57    import javax.jcr.Session;
58   
59    import org.junit.Test;
60   
61    /**
62    * Tests for {@link GoogleSiteMapVersionHandler}.
63    */
 
64    public class GoogleSiteMapVersionHandlerTest extends ModuleVersionHandlerTestCase {
65    private Session session;
 
66  4 toggle @Override
67    protected String getModuleDescriptorPath() {
68  4 return "/META-INF/magnolia/google-sitemap.xml";
69    }
70   
 
71  4 toggle @Override
72    protected ModuleVersionHandler newModuleVersionHandlerForTests() {
73  4 return new GoogleSiteMapVersionHandler();
74    }
75   
 
76  4 toggle @Override
77    protected String[] getExtraWorkspaces() {
78  4 return new String[] { "templates" };
79    }
80   
 
81  4 toggle @Override
82    protected List<String> getModuleDescriptorPathsForTests() {
83  4 return Arrays.asList("/META-INF/magnolia/core.xml");
84    }
85   
 
86  4 toggle @Override
87    public void setUp() throws Exception {
88  4 super.setUp();
89  4 session = MgnlContext.getJCRSession(RepositoryConstants.CONFIG);
90  4 addSupportForSetupModuleRepositoriesTask(GoogleSiteMapConfiguration.WORKSPACE);
91  4 this.setupConfigProperty("/modules/google-sitemap/dialogs/components/content/siteComponentTab/form/tabs/tabSites/fields/sites/field", "workspace", "website");
92  4 this.setupConfigNode("/modules/google-sitemap/dialogs/generic/controls/googleSiteMapTab/form/tabs/tabGoogleSitemapProps/fields/googleSitemapPriority");
93  4 this.setupConfigNode("/modules/google-sitemap/dialogs/generic/controls/googleSiteMapTab/form/tabs/tabGoogleSitemapProps/fields/googleSitemapChangefreq");
94  4 this.setupConfigNode("/modules/google-sitemap/dialogs/generic/controls/googleVirtualUriMapTab/form/tabs/tabGoogleSitemapProps/fields/googleSitemapPriority");
95  4 this.setupConfigNode("/modules/google-sitemap/dialogs/generic/controls/googleVirtualUriMapTab/form/tabs/tabGoogleSitemapProps/fields/googleSitemapChangefreq");
96  4 this.setupConfigNode("/modules/google-sitemap/templates/pages/siteMapsConfiguration");
97    }
98   
 
99  1 toggle @Test
100    public void testUpdateTo20ReordersSitemapBeforeConfigApp() throws Exception {
101    // GIVEN
102  1 Node manageApps = NodeUtil.createPath(session.getRootNode(), "modules/ui-admincentral/config/appLauncherLayout/groups/manage/apps", NodeTypes.ContentNode.NAME);
103  1 NodeUtil.createPath(manageApps, "rssAggregator", NodeTypes.ContentNode.NAME);
104  1 NodeUtil.createPath(manageApps, "configuration", NodeTypes.ContentNode.NAME);
105   
106    // WHEN
107  1 executeUpdatesAsIfTheCurrentlyInstalledVersionWas(Version.parseVersion("1.2.3"));
108   
109    // THEN
110  1 NodeIterator it = manageApps.getNodes();
111  1 assertTrue(manageApps.hasNode("siteMaps"));
112  1 assertEquals("rssAggregator", it.nextNode().getName());
113  1 assertEquals("siteMaps", it.nextNode().getName());
114  1 assertEquals("configuration", it.nextNode().getName());
115    }
116   
 
117  1 toggle @Test
118    public void testFreshInstallReordersSitemapBeforeConfigApp() throws Exception {
119    // GIVEN
120  1 Node manageApps = NodeUtil.createPath(session.getRootNode(), "modules/ui-admincentral/config/appLauncherLayout/groups/manage/apps", NodeTypes.ContentNode.NAME);
121  1 NodeUtil.createPath(manageApps, "rssAggregator", NodeTypes.ContentNode.NAME);
122  1 NodeUtil.createPath(manageApps, "configuration", NodeTypes.ContentNode.NAME);
123    // we have to create the siteMaps node artificially before bootstrapping, otherwise test would fail in maven
124  1 NodeUtil.createPath(manageApps, "siteMaps", NodeTypes.ContentNode.NAME);
125   
126    // WHEN
127  1 executeUpdatesAsIfTheCurrentlyInstalledVersionWas(null);
128   
129    // THEN
130  1 NodeIterator it = manageApps.getNodes();
131  1 assertTrue(manageApps.hasNode("siteMaps"));
132  1 assertEquals("rssAggregator", it.nextNode().getName());
133  1 assertEquals("siteMaps", it.nextNode().getName());
134  1 assertEquals("configuration", it.nextNode().getName());
135    }
136   
 
137  1 toggle @Test
138    public void testUpdateTo22() throws RepositoryException, ModuleManagementException {
139    // GIVEN
140  1 this.setupConfigProperty("/modules/google-sitemap/dialogs/components/content/siteComponentTab/form/tabs/siteMap", "property", "value");
141  1 this.setupConfigNode("/modules/google-sitemap/apps/siteMaps/subApps/browser");
142  1 this.setupConfigProperty("/modules/google-sitemap/apps/siteMaps/subApps/pages", "property", "value");
143  1 this.setupConfigProperty("/modules/google-sitemap/apps/siteMaps/subApps/browser/workbench/contentViews/list/columns/name", "formatterClass", "info.magnolia.module.googlesitemap.app.subapp.sitemapdetail.formatter.FolderNameColumnFormatter");
144   
145    // WHEN
146  1 executeUpdatesAsIfTheCurrentlyInstalledVersionWas(Version.parseVersion("2.0"));
147   
148    // THEN
149  1 NodeIterator it = session.getNode("/modules/google-sitemap/apps/siteMaps/subApps").getNodes();
150  1 assertEquals("browser", it.nextNode().getName());
151  1 assertEquals("pages", it.nextNode().getName());
152  1 assertConfig(FolderNameColumnFormatter.class.getName(), "/modules/google-sitemap/apps/siteMaps/subApps/browser/workbench/contentViews/list/columns/name/formatterClass");
153  1 assertConfig("0.5", "/modules/google-sitemap/config/priority");
154  1 assertConfig("weekly", "/modules/google-sitemap/config/changeFrequency");
155  1 assertTrue(session.nodeExists("/modules/google-sitemap/fieldTypes/siteMapSelect"));
156    }
157   
 
158  1 toggle @Test
159    public void testUpdateTo22ConfigureActions() throws Exception {
160    // GIVEN
161  1 Session session = MgnlContext.getJCRSession(RepositoryConstants.CONFIG);
162  1 this.setupConfigProperty("/modules/google-sitemap/apps/siteMaps/subApps/browser/workbench/contentViews/list/columns/name", "formatterClass", "info.magnolia.module.googlesitemap.app.subapp.sitemapdetail.formatter.FolderNameColumnFormatter");
163  1 Node addSiteMapAction = NodeUtil.createPath(session.getRootNode(), GoogleSiteMapVersionHandler.GOOGLESITEMAP_APP_BROWSER_ACTIONS + "addSiteMap", NodeTypes.ContentNode.NAME);
164  1 Node deleteAction = NodeUtil.createPath(session.getRootNode(), GoogleSiteMapVersionHandler.GOOGLESITEMAP_APP_BROWSER_ACTIONS + "delete", NodeTypes.ContentNode.NAME);
165  1 Node editSiteMapAction = NodeUtil.createPath(session.getRootNode(), GoogleSiteMapVersionHandler.GOOGLESITEMAP_APP_BROWSER_ACTIONS + "editSiteMap", NodeTypes.ContentNode.NAME);
166  1 Node activateAction = NodeUtil.createPath(session.getRootNode(), GoogleSiteMapVersionHandler.GOOGLESITEMAP_APP_BROWSER_ACTIONS + "activate", NodeTypes.ContentNode.NAME);
167  1 Node deactivateAction = NodeUtil.createPath(session.getRootNode(), GoogleSiteMapVersionHandler.GOOGLESITEMAP_APP_BROWSER_ACTIONS + "deactivate", NodeTypes.ContentNode.NAME);
168  1 Node activateDeletedAction = NodeUtil.createPath(session.getRootNode(), GoogleSiteMapVersionHandler.GOOGLESITEMAP_APP_BROWSER_ACTIONS + "activateDeleted", NodeTypes.ContentNode.NAME);
169   
170    // WHEN
171  1 executeUpdatesAsIfTheCurrentlyInstalledVersionWas(Version.parseVersion("2.1"));
172   
173    // THEN
174  1 assertThat(addSiteMapAction, hasNode("availability"));
175  1 assertThat(addSiteMapAction.getNode("availability"), hasProperty("writePermissionRequired", true));
176  1 assertThat(deleteAction, hasNode("availability"));
177  1 assertThat(deleteAction.getNode("availability"), hasProperty("writePermissionRequired", true));
178  1 assertThat(editSiteMapAction, hasNode("availability"));
179  1 assertThat(editSiteMapAction.getNode("availability"), hasProperty("writePermissionRequired", true));
180  1 assertThat(activateAction, hasNode("availability"));
181  1 assertThat(activateAction.getNode("availability"), hasProperty("writePermissionRequired", true));
182  1 assertThat(deactivateAction, hasNode("availability"));
183  1 assertThat(deactivateAction.getNode("availability"), hasProperty("writePermissionRequired", true));
184  1 assertThat(activateDeletedAction, hasNode("availability"));
185  1 assertThat(activateDeletedAction.getNode("availability"), hasProperty("writePermissionRequired", true));
186    }
187    }