/*
 * #%L
 * Alfresco Repository
 * %%
 * Copyright (C) 2005 - 2016 Alfresco Software Limited
 * %%
 * This file is part of the Alfresco software. 
 * If the software was purchased under a paid Alfresco license, the terms of 
 * the paid license agreement will prevail.  Otherwise, the software is 
 * provided under the following open source license terms:
 * 
 * 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 
* This method will close and restart the application context only if the configuration has * changed. * * @param appendTestConfigLocation additional context file to include in the application context * @return Test Server */ public static synchronized TestWebScriptServer getTestServer(String appendTestConfigLocation) { if (TestWebScriptRepoServer.ctx != null) { boolean configChanged = !EqualsHelper.nullSafeEquals( appendTestConfigLocation, TestWebScriptRepoServer.appendedTestConfiguration); if (configChanged) { // The config changed, so close the context (it'll be restarted later) try { ctx.close(); ctx = null; } catch (Throwable e) { throw new RuntimeException("Failed to shut down existing application context", e); } } else { // There is already a context with the required configuration } } // Check if we need to start/restart the context if (TestWebScriptRepoServer.ctx == null || (TestWebScriptRepoServer.ctx != null && !TestWebScriptRepoServer.ctx.isActive())) { // Restart it final String[] configLocations; if (appendTestConfigLocation == null) { configLocations = CONFIG_LOCATIONS; } else { configLocations = new String[CONFIG_LOCATIONS.length+1]; System.arraycopy(CONFIG_LOCATIONS, 0, configLocations, 0, CONFIG_LOCATIONS.length); configLocations[CONFIG_LOCATIONS.length] = appendTestConfigLocation; } TestWebScriptRepoServer.ctx = (ClassPathXmlApplicationContext)ApplicationContextHelper.getApplicationContext(configLocations); // TestWebScriptRepoServer.ctx = new ClassPathXmlApplicationContext(configLocations); TestWebScriptRepoServer.appendedTestConfiguration = appendTestConfigLocation; } // Get the bean TestWebScriptServer testServer = (TestWebScriptRepoServer)TestWebScriptRepoServer.ctx.getBean("webscripts.test"); return testServer; } /** * Interpret a single command using the BufferedReader passed in for any data needed. * * @param line The unparsed command * @return The textual output of the command. */ @Override protected String interpretCommand(final String line) throws IOException { try { if (username.startsWith("TICKET_")) { try { retryingTransactionHelper.doInTransaction(new RetryingTransactionCallback