ALF-9157 Start on REST unit tests for the existing wiki webscripts, and stub out the initial Java one

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@29584 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Nick Burch
2011-08-05 18:40:57 +00:00
parent 83ceaa8084
commit 5a7470aed8
5 changed files with 1068 additions and 2 deletions

View File

@@ -0,0 +1,313 @@
/*
* Copyright (C) 2005-2011 Alfresco Software Limited.
*
* This file is part of Alfresco
*
* Alfresco is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Alfresco is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
*/
package org.alfresco.repo.web.scripts.wiki;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import org.alfresco.query.PagingRequest;
import org.alfresco.repo.content.MimetypeMap;
import org.alfresco.repo.jscript.ScriptNode;
import org.alfresco.service.ServiceRegistry;
import org.alfresco.service.cmr.activities.ActivityService;
import org.alfresco.service.cmr.links.LinkInfo;
import org.alfresco.service.cmr.repository.NodeRef;
import org.alfresco.service.cmr.repository.NodeService;
import org.alfresco.service.cmr.site.SiteInfo;
import org.alfresco.service.cmr.site.SiteService;
import org.alfresco.service.cmr.wiki.WikiPageInfo;
import org.alfresco.service.cmr.wiki.WikiService;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.json.JSONException;
import org.json.JSONObject;
import org.json.JSONTokener;
import org.springframework.extensions.webscripts.Cache;
import org.springframework.extensions.webscripts.DeclarativeWebScript;
import org.springframework.extensions.webscripts.Status;
import org.springframework.extensions.webscripts.WebScriptException;
import org.springframework.extensions.webscripts.WebScriptRequest;
/**
* @author Nick Burch
* @since 4.0
*/
public abstract class AbstractWikiWebScript extends DeclarativeWebScript
{
public static final String WIKI_SERVICE_ACTIVITY_APP_NAME = "wiki";
/**
* When no maximum or paging info is given, what should we use?
*/
protected static final int MAX_QUERY_ENTRY_COUNT = 1000;
private static Log logger = LogFactory.getLog(AbstractWikiWebScript.class);
// Injected services
protected NodeService nodeService;
protected SiteService siteService;
protected WikiService wikiService;
protected ActivityService activityService;
protected ServiceRegistry serviceRegistry;
public void setNodeService(NodeService nodeService)
{
this.nodeService = nodeService;
}
public void setSiteService(SiteService siteService)
{
this.siteService = siteService;
}
public void setWikiService(WikiService wikiService)
{
this.wikiService = wikiService;
}
public void setActivityService(ActivityService activityService)
{
this.activityService = activityService;
}
public void setServiceRegistry(ServiceRegistry serviceRegistry)
{
this.serviceRegistry = serviceRegistry;
}
protected String getOrNull(JSONObject json, String key) throws JSONException
{
if(json.has(key))
{
return json.getString(key);
}
return null;
}
/**
* Builds up a listing Paging request, based on the arguments
* specified in the URL
*/
protected PagingRequest buildPagingRequest(WebScriptRequest req)
{
int pageSize = MAX_QUERY_ENTRY_COUNT;
int pageNumber = 1;
String pageSizeS = req.getParameter("pageSize");
if(pageSizeS != null)
{
try
{
pageSize = Integer.parseInt(pageSizeS);
}
catch(NumberFormatException e)
{
throw new WebScriptException(Status.STATUS_BAD_REQUEST, "Paging size parameters invalid");
}
}
String pageNumberS = req.getParameter("page");
if(pageNumberS != null)
{
try
{
pageNumber = Integer.parseInt(pageNumberS);
}
catch(NumberFormatException e)
{
throw new WebScriptException(Status.STATUS_BAD_REQUEST, "Paging size parameters invalid");
}
}
PagingRequest paging = new PagingRequest( (pageNumber-1) * pageSize, pageSize );
paging.setRequestTotalCountMax( Math.max(10, pageNumber) * pageSize );
return paging;
}
/**
* Generates an activity entry for the link
*/
protected void addActivityEntry(String event, LinkInfo link, SiteInfo site,
WebScriptRequest req, JSONObject json)
{
// What page is this for?
String page = req.getParameter("page");
if(page == null && json != null)
{
if(json.has("page"))
{
try
{
page = json.getString("page");
}
catch(JSONException e) {}
}
}
if(page == null)
{
// Default
page = "wiki";
}
try
{
JSONObject activity = new JSONObject();
activity.put("title", link.getTitle());
activity.put("page", page + "?title=" + link.getTitle());
activityService.postActivity(
"org.alfresco.wiki.page-" + event,
site.getShortName(),
WIKI_SERVICE_ACTIVITY_APP_NAME,
activity.toString()
);
}
catch(Exception e)
{
// Warn, but carry on
logger.warn("Error adding wiki page " + event + " to activities feed", e);
}
}
protected Object buildPerson(String username)
{
if(username == null || username.length() == 0)
{
// Empty string needed
return "";
}
// Script Node needed of the person
NodeRef person = serviceRegistry.getPersonService().getPerson(username);
return new ScriptNode(person, serviceRegistry);
}
protected Map<String, Object> renderWikiPage(WikiPageInfo page)
{
Map<String, Object> res = new HashMap<String, Object>();
res.put("node", page.getNodeRef());
res.put("page", new ScriptNode(page.getNodeRef(), serviceRegistry));
res.put("name", page.getSystemName());
res.put("title", page.getTitle());
res.put("contents", page.getContents());
res.put("createdOn", page.getCreatedAt());
res.put("modifiedOn", page.getModifiedAt());
res.put("tags", page.getTags());
// FTL needs a script node of the people
res.put("createdBy", buildPerson(page.getCreator()));
res.put("modifiedBY", buildPerson(page.getModifier()));
// We want blank instead of null
for(String key : res.keySet())
{
if(res.get(key) == null)
{
res.put(key, "");
}
}
return res;
}
@Override
protected Map<String, Object> executeImpl(WebScriptRequest req,
Status status, Cache cache)
{
Map<String, String> templateVars = req.getServiceMatch().getTemplateVars();
if(templateVars == null)
{
String error = "No parameters supplied";
throw new WebScriptException(Status.STATUS_BAD_REQUEST, error);
}
// Parse the JSON, if supplied
JSONObject json = null;
String contentType = req.getContentType();
if(contentType != null && contentType.indexOf(';') != -1)
{
contentType = contentType.substring(0, contentType.indexOf(';'));
}
if(MimetypeMap.MIMETYPE_JSON.equals(contentType))
{
try
{
json = new JSONObject(new JSONTokener(req.getContent().getContent()));
}
catch(IOException io)
{
throw new WebScriptException(Status.STATUS_BAD_REQUEST, "Invalid JSON: " + io.getMessage());
}
catch(JSONException je)
{
throw new WebScriptException(Status.STATUS_BAD_REQUEST, "Invalid JSON: " + je.getMessage());
}
}
// Get the site short name. Try quite hard to do so...
String siteName = templateVars.get("site");
if(siteName == null)
{
siteName = req.getParameter("site");
}
if(siteName == null && json != null)
{
try
{
if(json.has("siteid"))
{
siteName = json.getString("siteid");
}
else if(json.has("site"))
{
siteName = json.getString("site");
}
}
catch(JSONException e) {}
}
if(siteName == null)
{
String error = "No site given";
throw new WebScriptException(Status.STATUS_BAD_REQUEST, error);
}
// Grab the requested site
SiteInfo site = siteService.getSite(siteName);
if(site == null)
{
String error = "Could not find site: " + siteName;
throw new WebScriptException(Status.STATUS_NOT_FOUND, error);
}
// Link name is optional
String linkName = templateVars.get("path");
// Have the real work done
return executeImpl(site, linkName, req, json, status, cache);
}
protected abstract Map<String, Object> executeImpl(SiteInfo site,
String pageName, WebScriptRequest req, JSONObject json,
Status status, Cache cache);
}

View File

@@ -0,0 +1,160 @@
/*
* Copyright (C) 2005-2011 Alfresco Software Limited.
*
* This file is part of Alfresco
*
* Alfresco is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Alfresco is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
*/
package org.alfresco.repo.web.scripts.wiki;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.alfresco.query.PagingRequest;
import org.alfresco.query.PagingResults;
import org.alfresco.repo.jscript.ScriptNode;
import org.alfresco.repo.security.authentication.AuthenticationUtil;
import org.alfresco.repo.wiki.WikiServiceImpl;
import org.alfresco.service.cmr.repository.NodeRef;
import org.alfresco.service.cmr.site.SiteInfo;
import org.alfresco.service.cmr.wiki.WikiPageInfo;
import org.json.JSONObject;
import org.springframework.extensions.webscripts.Cache;
import org.springframework.extensions.webscripts.Status;
import org.springframework.extensions.webscripts.WebScriptRequest;
/**
* This class is the controller for the wiki page listing pagelist.get webscript.
*
* @author Nick Burch
* @since 4.0
*/
public class WikiPageListGet extends AbstractWikiWebScript
{
protected static final int RECENT_SEARCH_PERIOD_DAYS = 7;
protected static final long ONE_DAY_MS = 24*60*60*1000;
@Override
protected Map<String, Object> executeImpl(SiteInfo site, String pageName,
WebScriptRequest req, JSONObject json, Status status, Cache cache) {
// Decide on what kind of request they wanted
String filter = req.getParameter("filter");
// User?
boolean userFiltering = false;
String user = null;
if("user".equals(filter) || "myPages".equals(filter))
{
userFiltering = true;
user = AuthenticationUtil.getFullyAuthenticatedUser();
}
// Date?
boolean dateFiltering = false;
boolean dateIsCreated = true;
Date from = null;
Date to = null;
if("recentlyAdded".equals(filter) ||
"recentlyCreated".equals(filter) ||
"recentlyModified".equals(filter))
{
dateFiltering = true;
if("recentlyModified".equals(filter))
{
dateIsCreated = false;
}
int days = RECENT_SEARCH_PERIOD_DAYS;
String daysS = req.getParameter("days");
if(daysS != null || daysS.length() > 0)
{
days = Integer.parseInt(daysS);
}
Date now = new Date();
from = new Date(now.getTime() - days*ONE_DAY_MS);
to = new Date(now.getTime() + ONE_DAY_MS);
}
// Get the links for the list
PagingRequest paging = buildPagingRequest(req);
PagingResults<WikiPageInfo> pages;
if(userFiltering)
{
pages = wikiService.listWikiPages(site.getShortName(), user, paging);
}
else if(dateFiltering)
{
if(dateIsCreated)
{
pages = wikiService.listWikiPagesByCreated(site.getShortName(), from, to, paging);
}
else
{
pages = wikiService.listWikiPagesByModified(site.getShortName(), from, to, paging);
}
}
else
{
pages = wikiService.listWikiPages(site.getShortName(), paging);
}
// For each one in our page, grab details of any ignored instances
List<Map<String,Object>> items = new ArrayList<Map<String,Object>>();
for (WikiPageInfo page : pages.getPage())
{
Map<String, Object> result = renderWikiPage(page);
items.add(result);
}
Map<String, Object> data = new HashMap<String, Object>();
data.put("pages", items);
data.put("pageSize", paging.getMaxItems());
data.put("startIndex", paging.getSkipCount());
data.put("itemCount", items.size());
int total = items.size();
if(pages.getTotalResultCount() != null && pages.getTotalResultCount().getFirst() != null)
{
total = pages.getTotalResultCount().getFirst();
}
data.put("total", total);
// We need the container node for permissions checking
NodeRef container;
if(pages.getPage().size() > 0)
{
container = pages.getPage().get(0).getContainerNodeRef();
}
else
{
container = siteService.getContainer(
site.getShortName(), WikiServiceImpl.WIKI_COMPONENT
);
}
// All done
Map<String, Object> model = new HashMap<String, Object>();
model.put("data", data); // New style
model.put("pages", items); // Old style
model.put("container", new ScriptNode(container, serviceRegistry));
model.put("siteId", site.getShortName());
model.put("site", site);
return model;
}
}

View File

@@ -0,0 +1,591 @@
/*
* Copyright (C) 2005-2010 Alfresco Software Limited.
*
* This file is part of Alfresco
*
* Alfresco is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Alfresco is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
*/
package org.alfresco.repo.web.scripts.wiki;
import java.util.Date;
import javax.transaction.UserTransaction;
import org.alfresco.model.ContentModel;
import org.alfresco.repo.policy.BehaviourFilter;
import org.alfresco.repo.security.authentication.AuthenticationComponent;
import org.alfresco.repo.security.authentication.AuthenticationUtil;
import org.alfresco.repo.site.SiteModel;
import org.alfresco.repo.web.scripts.BaseWebScriptTest;
import org.alfresco.service.cmr.repository.NodeRef;
import org.alfresco.service.cmr.repository.NodeService;
import org.alfresco.service.cmr.security.MutableAuthenticationService;
import org.alfresco.service.cmr.security.PersonService;
import org.alfresco.service.cmr.site.SiteInfo;
import org.alfresco.service.cmr.site.SiteService;
import org.alfresco.service.cmr.site.SiteVisibility;
import org.alfresco.service.transaction.TransactionService;
import org.alfresco.util.ISO8601DateFormat;
import org.alfresco.util.PropertyMap;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.json.JSONArray;
import org.json.JSONObject;
import org.springframework.extensions.webscripts.Status;
import org.springframework.extensions.webscripts.TestWebScriptServer.GetRequest;
import org.springframework.extensions.webscripts.TestWebScriptServer.DeleteRequest;
import org.springframework.extensions.webscripts.TestWebScriptServer.PostRequest;
import org.springframework.extensions.webscripts.TestWebScriptServer.PutRequest;
import org.springframework.extensions.webscripts.TestWebScriptServer.Response;
/**
* Unit Test to test the Wiki Web Script API
*
* @author Nick Burch
*/
public class WikiRestApiTest extends BaseWebScriptTest
{
@SuppressWarnings("unused")
private static Log logger = LogFactory.getLog(WikiRestApiTest.class);
private MutableAuthenticationService authenticationService;
private AuthenticationComponent authenticationComponent;
private TransactionService transactionService;
private BehaviourFilter policyBehaviourFilter;
private PersonService personService;
private NodeService nodeService;
private NodeService internalNodeService;
private SiteService siteService;
private static final String USER_ONE = "UserOneSecondToo";
private static final String USER_TWO = "UserTwoSecondToo";
private static final String USERDETAILS_FIRSTNAME = "FirstName123";
private static final String USERDETAILS_LASTNAME = "LastName123";
private static final String SITE_SHORT_NAME_WIKI = "WikiSiteShortNameTest";
private static final String PAGE_TITLE_ONE = "TestPageOne";
private static final String PAGE_TITLE_TWO = "Test Page Two";
private static final String PAGE_TITLE_THREE = "Still Test Page Three";
private static final String PAGE_CONTENTS_ONE = "http://google.com/";
private static final String PAGE_CONTENTS_TWO = "http://alfresco.com/";
private static final String PAGE_CONTENTS_THREE = "http://share.alfresco.com/";
private static final String URL_WIKI_BASE = "/slingshot/wiki/page";
private static final String URL_WIKI_LIST = URL_WIKI_BASE + "s/" + SITE_SHORT_NAME_WIKI;
private static final String URL_WIKI_FETCH = URL_WIKI_BASE + "/" + SITE_SHORT_NAME_WIKI + "/"; // plus title
private static final String URL_WIKI_UPDATE = URL_WIKI_BASE + "/" + SITE_SHORT_NAME_WIKI + "/"; // plus title
private static final String URL_WIKI_DELETE = URL_WIKI_BASE + "/" + SITE_SHORT_NAME_WIKI + "/"; // plus title
private static final String URL_WIKI_RENAME = URL_WIKI_BASE + "/" + SITE_SHORT_NAME_WIKI + "/"; // plus title
private static final String URL_WIKI_VERSIONS = "/slingshot/wiki/version/" + SITE_SHORT_NAME_WIKI + "/";
// General methods
@Override
protected void setUp() throws Exception
{
super.setUp();
this.authenticationService = (MutableAuthenticationService)getServer().getApplicationContext().getBean("AuthenticationService");
this.authenticationComponent = (AuthenticationComponent)getServer().getApplicationContext().getBean("authenticationComponent");
this.policyBehaviourFilter = (BehaviourFilter)getServer().getApplicationContext().getBean("policyBehaviourFilter");
this.transactionService = (TransactionService)getServer().getApplicationContext().getBean("transactionService");
this.personService = (PersonService)getServer().getApplicationContext().getBean("PersonService");
this.nodeService = (NodeService)getServer().getApplicationContext().getBean("NodeService");
this.siteService = (SiteService)getServer().getApplicationContext().getBean("SiteService");
this.internalNodeService = (NodeService)getServer().getApplicationContext().getBean("nodeService");
// Authenticate as user
this.authenticationComponent.setCurrentUser(AuthenticationUtil.getAdminUserName());
// Create test site
// - only create the site if it doesn't already exist
SiteInfo siteInfo = this.siteService.getSite(SITE_SHORT_NAME_WIKI);
if (siteInfo == null)
{
this.siteService.createSite("WikiSitePreset", SITE_SHORT_NAME_WIKI, "WikiSiteTitle", "TestDescription", SiteVisibility.PUBLIC);
}
// Ensure the links container is there
if(!siteService.hasContainer(SITE_SHORT_NAME_WIKI, "wiki"))
{
siteService.createContainer(SITE_SHORT_NAME_WIKI, "wiki", null, null);
}
// Create users
createUser(USER_ONE, SiteModel.SITE_COLLABORATOR);
createUser(USER_TWO, SiteModel.SITE_COLLABORATOR);
// Do tests as inviter user
this.authenticationComponent.setCurrentUser(USER_ONE);
}
@Override
protected void tearDown() throws Exception
{
super.tearDown();
// admin user required to delete user
this.authenticationComponent.setCurrentUser(AuthenticationUtil.getAdminUserName());
// delete the site
siteService.deleteSite(SITE_SHORT_NAME_WIKI);
// delete the users
personService.deletePerson(USER_ONE);
if(this.authenticationService.authenticationExists(USER_ONE))
{
this.authenticationService.deleteAuthentication(USER_ONE);
}
personService.deletePerson(USER_TWO);
if(this.authenticationService.authenticationExists(USER_TWO))
{
this.authenticationService.deleteAuthentication(USER_TWO);
}
}
private void createUser(String userName, String role)
{
// if user with given user name doesn't already exist then create user
if (this.authenticationService.authenticationExists(userName) == false)
{
// create user
this.authenticationService.createAuthentication(userName, "password".toCharArray());
// create person properties
PropertyMap personProps = new PropertyMap();
personProps.put(ContentModel.PROP_USERNAME, userName);
personProps.put(ContentModel.PROP_FIRSTNAME, USERDETAILS_FIRSTNAME);
personProps.put(ContentModel.PROP_LASTNAME, USERDETAILS_LASTNAME);
personProps.put(ContentModel.PROP_EMAIL, "FirstName123.LastName123@email.com");
personProps.put(ContentModel.PROP_JOBTITLE, "JobTitle123");
personProps.put(ContentModel.PROP_JOBTITLE, "Organisation123");
// create person node for user
this.personService.createPerson(personProps);
}
// add the user as a member with the given role
this.siteService.setMembership(SITE_SHORT_NAME_WIKI, userName, role);
}
// Test helper methods
private JSONObject getPages(String filter, String username) throws Exception
{
String origUser = this.authenticationComponent.getCurrentUserName();
if(username != null)
{
this.authenticationComponent.setCurrentUser(username);
filter = "myPages";
}
String url = URL_WIKI_LIST;
if(filter == null)
{
filter = "all";
}
url += "?filter=" + filter;
url += "&startIndex=0&page=1&pageSize=4";
Response response = sendRequest(new GetRequest(url), 200);
JSONObject result = new JSONObject(response.getContentAsString());
if(username != null)
{
this.authenticationComponent.setCurrentUser(origUser);
}
return result;
}
private JSONObject getPage(String name, int expectedStatus) throws Exception
{
Response response = sendRequest(new GetRequest(URL_WIKI_FETCH + name), expectedStatus);
if (expectedStatus == Status.STATUS_OK)
{
JSONObject result = new JSONObject(response.getContentAsString());
if(result.has("page"))
{
return result.getJSONObject("page");
}
return result;
}
else
{
return null;
}
}
/**
* Creates a single wiki page based on the supplied details
*/
private JSONObject createOrUpdatePage(String title, String contents, int expectedStatus)
throws Exception
{
String name = title.replace(' ', '_');
JSONObject json = new JSONObject();
json.put("site", SITE_SHORT_NAME_WIKI);
json.put("title", title);
json.put("pagecontent", contents);
json.put("tags", "");
json.put("forceSave", "true"); // Allow the save as-is
json.put("page", "wiki-page"); // TODO Is this really needed?
Response response = sendRequest(new PutRequest(URL_WIKI_UPDATE + name, json.toString(), "application/json"), expectedStatus);
if (expectedStatus == Status.STATUS_OK)
{
JSONObject result = new JSONObject(response.getContentAsString());
if(result.has("page"))
{
return result.getJSONObject("page");
}
return result;
}
else
{
return null;
}
}
/**
* Renames the page
*/
private JSONObject renamPage(String oldTitle, String newTitle, int expectedStatus) throws Exception
{
String name = oldTitle.replace(' ', '_');
JSONObject json = new JSONObject();
json.put("site", SITE_SHORT_NAME_WIKI);
json.put("name", newTitle);
json.put("page", "wiki-page"); // TODO Is this really needed?
Response response = sendRequest(new PostRequest(URL_WIKI_UPDATE + name, json.toString(), "application/json"), expectedStatus);
if (expectedStatus == Status.STATUS_OK)
{
JSONObject result = new JSONObject(response.getContentAsString());
return result;
}
else
{
return null;
}
}
/**
* Deletes the page
*/
private JSONObject deletePage(String title, int expectedStatus) throws Exception
{
String name = title.replace(' ', '_');
Response response = sendRequest(new DeleteRequest(URL_WIKI_DELETE + name), expectedStatus);
if (expectedStatus == Status.STATUS_OK)
{
JSONObject result = new JSONObject(response.getContentAsString());
return result;
}
else
{
return null;
}
}
/**
* Monkeys with the created date on a wiki page
*/
private void pushPageCreatedDateBack(String name, int daysAgo) throws Exception
{
NodeRef container = siteService.getContainer(SITE_SHORT_NAME_WIKI, "wiki");
NodeRef node = nodeService.getChildByName(container, ContentModel.ASSOC_CONTAINS, name);
Date created = (Date)nodeService.getProperty(node, ContentModel.PROP_CREATED);
Date newCreated = new Date(created.getTime() - daysAgo*24*60*60*1000);
UserTransaction txn = transactionService.getUserTransaction();
txn.begin();
this.policyBehaviourFilter.disableBehaviour(ContentModel.ASPECT_AUDITABLE);
internalNodeService.setProperty(node, ContentModel.PROP_CREATED, newCreated);
this.policyBehaviourFilter.enableBehaviour(ContentModel.ASPECT_AUDITABLE);
txn.commit();
// Now chance something else on the node to have it re-indexed
nodeService.setProperty(node, ContentModel.PROP_CREATED, newCreated);
nodeService.setProperty(node, ContentModel.PROP_DESCRIPTION, "Forced change");
}
// Tests
/**
* Creating, editing, fetching and deleting a link
*/
public void testCreateEditDeleteEntry() throws Exception
{
JSONObject page;
JSONObject permissions;
String name;
// None to start with
page = getPages(null, null);
assertEquals("Incorrect JSON: " + page.toString(), true, page.has("totalPages"));
assertEquals(0, page.getInt("totalPages"));
// Won't be there to start with
page = getPage(PAGE_TITLE_ONE, Status.STATUS_NOT_FOUND);
// Create
page = createOrUpdatePage(PAGE_TITLE_ONE, PAGE_CONTENTS_ONE, Status.STATUS_OK);
name = PAGE_TITLE_ONE.replace(' ', '_');
assertEquals("Incorrect JSON: " + page.toString(), true, page.has("title"));
assertEquals(name, page.getString("name"));
assertEquals(PAGE_TITLE_ONE, page.getString("title"));
assertEquals(PAGE_CONTENTS_ONE, page.getString("pagetext"));
assertEquals(0, page.getJSONArray("tags").length());
// Fetch
page = getPage(name, Status.STATUS_OK);
assertEquals(name, page.getString("name"));
assertEquals(PAGE_TITLE_ONE, page.getString("title"));
assertEquals(PAGE_CONTENTS_ONE, page.getString("pagetext"));
assertEquals(0, page.getJSONArray("tags").length());
assertEquals(0, page.getJSONArray("links").length());
// Check the permissions
assertEquals(true, page.has("permissions"));
permissions = page.getJSONObject("permissions");
assertEquals(true, permissions.getBoolean("create"));
assertEquals(true, permissions.getBoolean("edit"));
assertEquals(true, permissions.getBoolean("delete"));
// Edit
// We should get a simple message
page = createOrUpdatePage(PAGE_TITLE_ONE, "M"+PAGE_CONTENTS_ONE, Status.STATUS_OK);
assertEquals(name, page.getString("name"));
assertEquals(PAGE_TITLE_ONE, page.getString("title"));
assertEquals("M"+PAGE_CONTENTS_ONE, page.getString("pagetext"));
assertEquals(0, page.getJSONArray("tags").length());
// Fetch
page = getPage(name, Status.STATUS_OK);
assertEquals(name, page.getString("name"));
assertEquals(PAGE_TITLE_ONE, page.getString("title"));
assertEquals("M"+PAGE_CONTENTS_ONE, page.getString("pagetext"));
assertEquals(0, page.getJSONArray("tags").length());
assertEquals(0, page.getJSONArray("links").length());
// Fetch as a different user, permissions different
this.authenticationComponent.setCurrentUser(USER_TWO);
page = getPage(name, Status.STATUS_OK);
// Check the basics
assertEquals(name, page.getString("name"));
assertEquals(PAGE_TITLE_ONE, page.getString("title"));
assertEquals("M"+PAGE_CONTENTS_ONE, page.getString("pagetext"));
assertEquals(0, page.getJSONArray("tags").length());
assertEquals(0, page.getJSONArray("links").length());
// Different user in the site, can edit but not delete
assertEquals(true, page.has("permissions"));
permissions = page.getJSONObject("permissions");
assertEquals(true, permissions.getBoolean("create"));
assertEquals(true, permissions.getBoolean("edit"));
assertEquals(false, permissions.getBoolean("delete"));
this.authenticationComponent.setCurrentUser(USER_ONE);
// Delete
page = deletePage(name, Status.STATUS_NO_CONTENT);
assertEquals(null, page); // No response
// Fetch, will have gone
page = getPage(name, Status.STATUS_NOT_FOUND);
// Can't delete again
deletePage(name, Status.STATUS_NOT_FOUND);
}
public void testRenaming() throws Exception
{
JSONObject page;
String name;
String name2;
// Create a page
page = createOrUpdatePage(PAGE_TITLE_TWO, PAGE_CONTENTS_ONE, Status.STATUS_OK);
name = PAGE_TITLE_TWO.replace(' ', '_');
assertEquals("Incorrect JSON: " + page.toString(), true, page.has("title"));
// Fetch it and check
page = getPage(name, Status.STATUS_OK);
assertEquals(name, page.getString("name"));
assertEquals(PAGE_TITLE_TWO, page.getString("title"));
// Have it renamed
page = renamPage(PAGE_TITLE_TWO, PAGE_TITLE_THREE, Status.STATUS_OK);
name2 = PAGE_TITLE_THREE.replace(' ', '_');
assertEquals(name2, page.getString("name"));
// Fetch it at the new address
page = getPage(name2, Status.STATUS_OK);
assertEquals(name2, page.getString("name"));
assertEquals(PAGE_TITLE_THREE, page.getString("title"));
// Get the old one, and ensure we see the "has been moved"
page = getPage(name, Status.STATUS_OK);
assertEquals(name, page.getString("name"));
assertEquals(PAGE_TITLE_TWO, page.getString("title"));
assertEquals("This page has been moved [["+name2+"|here]].", page.getString("pagetext"));
}
public void testVersioning() throws Exception
{
// TODO
}
public void testLinks() throws Exception
{
// TODO
}
/**
* Listing
*/
public void testOverallListing() throws Exception
{
JSONObject pages;
JSONArray entries;
// Initially, there are no events
pages = getPages(null, null);
assertEquals("Incorrect JSON: " + pages.toString(), true, pages.has("totalPages"));
assertEquals(0, pages.getInt("totalPages"));
// Add two links to get started with
createOrUpdatePage(PAGE_TITLE_ONE, PAGE_CONTENTS_ONE, Status.STATUS_OK);
createOrUpdatePage(PAGE_TITLE_TWO, PAGE_CONTENTS_TWO, Status.STATUS_OK);
// Check again
pages = getPages(null, null);
// Should have two links
assertEquals("Incorrect JSON: " + pages.toString(), true, pages.has("totalPages"));
assertEquals(2, pages.getInt("totalPages"));
entries = pages.getJSONArray("pages");
assertEquals(2, entries.length());
// Sorted by newest created first
assertEquals(PAGE_TITLE_TWO, entries.getJSONObject(0).getString("title"));
assertEquals(PAGE_TITLE_ONE, entries.getJSONObject(1).getString("title"));
// Add a third, which is internal, and created by the other user
this.authenticationComponent.setCurrentUser(USER_TWO);
JSONObject page3 = createOrUpdatePage(PAGE_TITLE_THREE, PAGE_CONTENTS_THREE, Status.STATUS_OK);
String name3 = PAGE_TITLE_THREE.replace(' ', '_');
createOrUpdatePage(PAGE_TITLE_THREE, "UD"+PAGE_CONTENTS_THREE, Status.STATUS_OK);
this.authenticationComponent.setCurrentUser(USER_ONE);
// Check now, should have three links
pages = getPages(null, null);
assertEquals(3, pages.getInt("totalPages"));
entries = pages.getJSONArray("pages");
assertEquals(3, entries.length());
assertEquals(PAGE_TITLE_THREE, entries.getJSONObject(0).getString("title"));
assertEquals(PAGE_TITLE_TWO, entries.getJSONObject(1).getString("title"));
assertEquals(PAGE_TITLE_ONE, entries.getJSONObject(2).getString("title"));
// Ask for filtering by user
pages = getPages(null, USER_ONE);
assertEquals(2, pages.getInt("totalPages"));
entries = pages.getJSONArray("pages");
assertEquals(2, entries.length());
assertEquals(PAGE_TITLE_TWO, entries.getJSONObject(0).getString("title"));
assertEquals(PAGE_TITLE_ONE, entries.getJSONObject(1).getString("title"));
pages = getPages(null, USER_TWO);
assertEquals(1, pages.getInt("totalPages"));
entries = pages.getJSONArray("pages");
assertEquals(1, entries.length());
assertEquals(PAGE_TITLE_THREE, entries.getJSONObject(0).getString("title"));
// Ask for filtering by recent docs
// TODO
// pages = getPages("recentlyAdded", null);
// pages = getPages("recentlyModified", null);
// assertEquals(3, pages.getInt("totalPages"));
//
// entries = pages.getJSONArray("pages");
// assertEquals(3, entries.length());
// assertEquals(PAGE_TITLE_THREE, entries.getJSONObject(0).getString("title"));
// assertEquals(PAGE_TITLE_TWO, entries.getJSONObject(1).getString("title"));
// assertEquals(PAGE_TITLE_ONE, entries.getJSONObject(2).getString("title"));
//
//
// // Push the 3rd event back, it'll fall off
// pushPageCreatedDateBack(name3, 10);
//
// pages = getPages("recent", null);
// assertEquals(2, pages.getInt("total"));
// assertEquals(2, pages.getInt("itemCount"));
//
// entries = pages.getJSONArray("items");
// assertEquals(2, entries.length());
// assertEquals(PAGE_TITLE_TWO, entries.getJSONObject(0).getString("title"));
// assertEquals(PAGE_TITLE_ONE, entries.getJSONObject(1).getString("title"));
// Now hide the site, and remove the user from it, won't be allowed to see it
this.authenticationComponent.setCurrentUser(AuthenticationUtil.getAdminUserName());
SiteInfo site = siteService.getSite(SITE_SHORT_NAME_WIKI);
site.setVisibility(SiteVisibility.PRIVATE);
siteService.updateSite(site);
siteService.removeMembership(SITE_SHORT_NAME_WIKI, USER_ONE);
this.authenticationComponent.setCurrentUser(USER_ONE);
sendRequest(new GetRequest(URL_WIKI_LIST), Status.STATUS_NOT_FOUND);
}
}