Merge branch 'develop' into LibrAlign
[taxeditor.git] / eu.etaxonomy.taxeditor.test / src / test / java / eu / etaxonomy / taxeditor / httpinvoker / CdmServerTest.java
1 /**
2 * Copyright (C) 2014 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9 package eu.etaxonomy.taxeditor.httpinvoker;
10
11 import java.io.File;
12 import java.io.IOException;
13 import java.net.URISyntaxException;
14 import java.net.URL;
15
16 import org.apache.log4j.Logger;
17 import org.eclipse.core.runtime.FileLocator;
18 import org.eclipse.core.runtime.Platform;
19 import org.junit.Assert;
20 import org.junit.Ignore;
21 import org.junit.Test;
22 import org.osgi.framework.Bundle;
23
24 import eu.etaxonomy.taxeditor.remoting.server.CDMServerUtils;
25 import eu.etaxonomy.taxeditor.webapp.CDMEmbeddedServerException;
26 import eu.etaxonomy.taxeditor.webapp.CDMServer;
27 import eu.etaxonomy.taxeditor.webapp.ICDMServerError;
28
29
30 /**
31 * @author cmathew
32 * @date 6 Oct 2014
33 *
34 */
35 public class CdmServerTest extends TestConfig {
36 private static final Logger logger = Logger.getLogger(CdmServerTest.class);
37
38
39
40 @Test
41 public void generateConfigFile() throws IOException {
42 String mgdServerConfigFileName = "test.mgd.datasources.xml";
43 String config = CDMServerUtils.convertEditorToServerConfig();
44 CDMServerUtils.writeManagedServerConfig(config, mgdServerConfigFileName);
45 }
46
47 @Test
48 @Ignore
49 //FIXME: remove @ignore and fix test
50 public void manageCdmServer() throws IOException, URISyntaxException, CDMEmbeddedServerException {
51 Bundle bundle = Platform.getBundle("eu.etaxonomy.taxeditor.test");
52 URL mgdDatasourcesConfigURL = bundle.getEntry("src/test/resources/.cdmLibrary/writableResources/mgd.datasources.xml");
53 File mgdDatasourcesConfigFile = new File(FileLocator.resolve(mgdDatasourcesConfigURL).toURI());
54 CDMServer cdmServer = new CDMServer("cdmTest", mgdDatasourcesConfigFile);
55 cdmServer.start(new ICDMServerError() {
56 @Override
57 public void handleError(Throwable t) {
58 Assert.fail("Error starting server. Reason : " + t.getMessage());
59 }
60 });
61 try {
62 cdmServer.stop();
63 } catch (Exception e) {
64 e.printStackTrace();
65 Assert.fail("Error stopping server. Reason : " + e.getMessage());
66 }
67 }
68 }