From 240bec9b691ea659c6692756fa9910e0b5ee3987 Mon Sep 17 00:00:00 2001 From: Ray Lee Date: Mon, 4 May 2015 23:08:01 -0700 Subject: [PATCH] CSPACE-6609: Add exhibition procedure. --- services/JaxRsServiceProvider/pom.xml | 5 + .../CollectionSpaceJaxRsApplication.java | 2 + services/build.xml | 3 + services/exhibition/3rdparty/build.xml | 130 ++++ .../nuxeo-platform-cs-exhibition/build.xml | 161 ++++ .../nuxeo-platform-cs-exhibition/pom.xml | 55 ++ .../src/main/resources/OSGI-INF/README.txt | 16 + .../src/main/resources/schemas/README.txt | 16 + services/exhibition/3rdparty/pom.xml | 24 + services/exhibition/build.xml | 124 ++++ services/exhibition/client/pom.xml | 95 +++ .../services/client/ExhibitionClient.java | 48 ++ .../services/client/ExhibitionProxy.java | 30 + .../client/test/ExhibitionServiceTest.java | 689 ++++++++++++++++++ .../src/test/resources/log4j.properties | 23 + services/exhibition/jaxb/pom.xml | 34 + .../services/ExhibitionJAXBSchema.java | 8 + .../ExhibitionListItemJAXBSchema.java | 14 + .../src/main/resources/exhibitions-common.xsd | 35 + services/exhibition/pom.xml | 23 + services/exhibition/service/pom.xml | 105 +++ services/exhibition/service/profiles.xml | 4 + .../exhibition/ExhibitionResource.java | 58 ++ .../exhibition/nuxeo/ExhibitionConstants.java | 35 + .../nuxeo/ExhibitionDocumentModelHandler.java | 33 + .../nuxeo/ExhibitionValidatorHandler.java | 18 + .../services/test/ExhibitionServiceTest.java | 11 + .../service/src/test/resources/log4j.xml | 41 ++ services/pom.xml | 1 + 29 files changed, 1841 insertions(+) create mode 100644 services/exhibition/3rdparty/build.xml create mode 100644 services/exhibition/3rdparty/nuxeo-platform-cs-exhibition/build.xml create mode 100644 services/exhibition/3rdparty/nuxeo-platform-cs-exhibition/pom.xml create mode 100644 services/exhibition/3rdparty/nuxeo-platform-cs-exhibition/src/main/resources/OSGI-INF/README.txt create mode 100644 services/exhibition/3rdparty/nuxeo-platform-cs-exhibition/src/main/resources/schemas/README.txt create mode 100644 services/exhibition/3rdparty/pom.xml create mode 100644 services/exhibition/build.xml create mode 100644 services/exhibition/client/pom.xml create mode 100644 services/exhibition/client/src/main/java/org/collectionspace/services/client/ExhibitionClient.java create mode 100644 services/exhibition/client/src/main/java/org/collectionspace/services/client/ExhibitionProxy.java create mode 100644 services/exhibition/client/src/test/java/org/collectionspace/services/client/test/ExhibitionServiceTest.java create mode 100644 services/exhibition/client/src/test/resources/log4j.properties create mode 100644 services/exhibition/jaxb/pom.xml create mode 100644 services/exhibition/jaxb/src/main/java/org/collectionspace/services/ExhibitionJAXBSchema.java create mode 100644 services/exhibition/jaxb/src/main/java/org/collectionspace/services/ExhibitionListItemJAXBSchema.java create mode 100644 services/exhibition/jaxb/src/main/resources/exhibitions-common.xsd create mode 100644 services/exhibition/pom.xml create mode 100644 services/exhibition/service/pom.xml create mode 100644 services/exhibition/service/profiles.xml create mode 100644 services/exhibition/service/src/main/java/org/collectionspace/services/exhibition/ExhibitionResource.java create mode 100644 services/exhibition/service/src/main/java/org/collectionspace/services/exhibition/nuxeo/ExhibitionConstants.java create mode 100644 services/exhibition/service/src/main/java/org/collectionspace/services/exhibition/nuxeo/ExhibitionDocumentModelHandler.java create mode 100644 services/exhibition/service/src/main/java/org/collectionspace/services/exhibition/nuxeo/ExhibitionValidatorHandler.java create mode 100644 services/exhibition/service/src/test/java/org/collectionspace/services/test/ExhibitionServiceTest.java create mode 100644 services/exhibition/service/src/test/resources/log4j.xml diff --git a/services/JaxRsServiceProvider/pom.xml b/services/JaxRsServiceProvider/pom.xml index c37cbff79..4dee57776 100644 --- a/services/JaxRsServiceProvider/pom.xml +++ b/services/JaxRsServiceProvider/pom.xml @@ -166,6 +166,11 @@ org.collectionspace.services.loanout.service ${project.version} + + org.collectionspace.services + org.collectionspace.services.exhibition.service + ${project.version} + org.collectionspace.services org.collectionspace.services.conditioncheck.service diff --git a/services/JaxRsServiceProvider/src/main/java/org/collectionspace/services/jaxrs/CollectionSpaceJaxRsApplication.java b/services/JaxRsServiceProvider/src/main/java/org/collectionspace/services/jaxrs/CollectionSpaceJaxRsApplication.java index 654b30764..06c5f87c2 100644 --- a/services/JaxRsServiceProvider/src/main/java/org/collectionspace/services/jaxrs/CollectionSpaceJaxRsApplication.java +++ b/services/JaxRsServiceProvider/src/main/java/org/collectionspace/services/jaxrs/CollectionSpaceJaxRsApplication.java @@ -51,6 +51,7 @@ import org.collectionspace.services.vocabulary.VocabularyResource; import org.collectionspace.services.organization.OrgAuthorityResource; import org.collectionspace.services.person.PersonAuthorityResource; import org.collectionspace.services.citation.CitationAuthorityResource; +import org.collectionspace.services.exhibition.ExhibitionResource; import org.collectionspace.services.conditioncheck.ConditioncheckResource; import javax.servlet.ServletContext; @@ -117,6 +118,7 @@ public class CollectionSpaceJaxRsApplication extends Application addResourceToMapAndSingletons(new RelationResource()); addResourceToMapAndSingletons(new LoaninResource()); addResourceToMapAndSingletons(new LoanoutResource()); + addResourceToMapAndSingletons(new ExhibitionResource()); addResourceToMapAndSingletons(new ConditioncheckResource()); addResourceToMapAndSingletons(new ValuationcontrolResource()); addResourceToMapAndSingletons(new ObjectExitResource()); diff --git a/services/build.xml b/services/build.xml index 5078e9d49..a4bbaf586 100644 --- a/services/build.xml +++ b/services/build.xml @@ -170,6 +170,7 @@ + @@ -212,6 +213,7 @@ + @@ -267,6 +269,7 @@ + diff --git a/services/exhibition/3rdparty/build.xml b/services/exhibition/3rdparty/build.xml new file mode 100644 index 000000000..049f3e0ce --- /dev/null +++ b/services/exhibition/3rdparty/build.xml @@ -0,0 +1,130 @@ + + + exhibition service 3rdparty + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/services/exhibition/3rdparty/nuxeo-platform-cs-exhibition/build.xml b/services/exhibition/3rdparty/nuxeo-platform-cs-exhibition/build.xml new file mode 100644 index 000000000..5c0ae0429 --- /dev/null +++ b/services/exhibition/3rdparty/nuxeo-platform-cs-exhibition/build.xml @@ -0,0 +1,161 @@ + + + + exhibition nuxeo document type + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/services/exhibition/3rdparty/nuxeo-platform-cs-exhibition/pom.xml b/services/exhibition/3rdparty/nuxeo-platform-cs-exhibition/pom.xml new file mode 100644 index 000000000..ba1442664 --- /dev/null +++ b/services/exhibition/3rdparty/nuxeo-platform-cs-exhibition/pom.xml @@ -0,0 +1,55 @@ + + + + org.collectionspace.services + org.collectionspace.services.exhibition.3rdparty + 4.2-SNAPSHOT + + + 4.0.0 + org.collectionspace.services + org.collectionspace.services.exhibition.3rdparty.nuxeo + services.exhibition.3rdparty.nuxeo + jar + + Exhibition Nuxeo Document Type + + + + exhibition + Exhibition + exhibitions_common + cs_default + + + + + + src/main/resources + true + + + ../../../../3rdparty/nuxeo/nuxeo-doctype/src/main/resources + true + + + + + org.apache.maven.plugins + maven-jar-plugin + + + target/classes/META-INF/MANIFEST.MF + + ${eclipseVersion} + 2 + + + + + + + + diff --git a/services/exhibition/3rdparty/nuxeo-platform-cs-exhibition/src/main/resources/OSGI-INF/README.txt b/services/exhibition/3rdparty/nuxeo-platform-cs-exhibition/src/main/resources/OSGI-INF/README.txt new file mode 100644 index 000000000..5f304de86 --- /dev/null +++ b/services/exhibition/3rdparty/nuxeo-platform-cs-exhibition/src/main/resources/OSGI-INF/README.txt @@ -0,0 +1,16 @@ +Files formerly located in this directory are no longer needed +------------------------------------------------------------- + +In CollectionSpace versions 4.0 and higher, changes were introduced +which streamline and simplify the process through which you configure +fields in CollectionSpace's main record types. + +In most cases now, you will typically change the behavior of existing fields, +or create extension schemas to add new fields specific to your museum and/or +community of practice, merely by editing simpler XML-based configuration +files within CollectionSpace's Application layer. + +Services layer files that were formerly located in this directory and +other, similar directories - which you previously needed to manually +create or edit - are now generated automatically from your configuration +in the Application layer. diff --git a/services/exhibition/3rdparty/nuxeo-platform-cs-exhibition/src/main/resources/schemas/README.txt b/services/exhibition/3rdparty/nuxeo-platform-cs-exhibition/src/main/resources/schemas/README.txt new file mode 100644 index 000000000..5f304de86 --- /dev/null +++ b/services/exhibition/3rdparty/nuxeo-platform-cs-exhibition/src/main/resources/schemas/README.txt @@ -0,0 +1,16 @@ +Files formerly located in this directory are no longer needed +------------------------------------------------------------- + +In CollectionSpace versions 4.0 and higher, changes were introduced +which streamline and simplify the process through which you configure +fields in CollectionSpace's main record types. + +In most cases now, you will typically change the behavior of existing fields, +or create extension schemas to add new fields specific to your museum and/or +community of practice, merely by editing simpler XML-based configuration +files within CollectionSpace's Application layer. + +Services layer files that were formerly located in this directory and +other, similar directories - which you previously needed to manually +create or edit - are now generated automatically from your configuration +in the Application layer. diff --git a/services/exhibition/3rdparty/pom.xml b/services/exhibition/3rdparty/pom.xml new file mode 100644 index 000000000..7dfa3af71 --- /dev/null +++ b/services/exhibition/3rdparty/pom.xml @@ -0,0 +1,24 @@ + + + org.collectionspace.services.exhibition + org.collectionspace.services + 4.2-SNAPSHOT + + + 4.0.0 + org.collectionspace.services.exhibition.3rdparty + services.exhibition.3rdparty + pom + + + 3rd party build for exhibition service + + + + + + diff --git a/services/exhibition/build.xml b/services/exhibition/build.xml new file mode 100644 index 000000000..aae1ba64a --- /dev/null +++ b/services/exhibition/build.xml @@ -0,0 +1,124 @@ + + + + exhibition service + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/services/exhibition/client/pom.xml b/services/exhibition/client/pom.xml new file mode 100644 index 000000000..ff5903aeb --- /dev/null +++ b/services/exhibition/client/pom.xml @@ -0,0 +1,95 @@ + + + + org.collectionspace.services + org.collectionspace.services.exhibition + 4.2-SNAPSHOT + + + 4.0.0 + org.collectionspace.services + org.collectionspace.services.exhibition.client + services.exhibition.client + + + + + org.slf4j + slf4j-api + test + + + org.slf4j + slf4j-log4j12 + test + + + + org.collectionspace.services + org.collectionspace.services.authority.jaxb + true + ${project.version} + + + org.collectionspace.services + org.collectionspace.services.jaxb + ${project.version} + + + org.collectionspace.services + org.collectionspace.services.common + true + ${project.version} + + + org.collectionspace.services + org.collectionspace.services.client + ${project.version} + + + org.collectionspace.services + org.collectionspace.services.exhibition.jaxb + ${project.version} + + + org.collectionspace.services + org.collectionspace.services.person.client + ${project.version} + + + + org.testng + testng + + + org.jboss.resteasy + resteasy-jaxrs + + + + tjws + webserver + + + + + org.jboss.resteasy + resteasy-jaxb-provider + + + org.jboss.resteasy + resteasy-multipart-provider + + + commons-httpclient + commons-httpclient + 3.1 + + + + + collectionspace-services-exhibition-client + + diff --git a/services/exhibition/client/src/main/java/org/collectionspace/services/client/ExhibitionClient.java b/services/exhibition/client/src/main/java/org/collectionspace/services/client/ExhibitionClient.java new file mode 100644 index 000000000..dec1bd05a --- /dev/null +++ b/services/exhibition/client/src/main/java/org/collectionspace/services/client/ExhibitionClient.java @@ -0,0 +1,48 @@ +/** + * This document is a part of the source code and related artifacts + * for CollectionSpace, an open source collections management system + * for museums and related institutions: + * + * http://www.collectionspace.org + * http://wiki.collectionspace.org + * + * Copyright (c) 2009 Regents of the University of California + * + * Licensed under the Educational Community License (ECL), Version 2.0. + * You may not use this file except in compliance with this License. + * + * You may obtain a copy of the ECL 2.0 License at + * https://source.collectionspace.org/collection-space/LICENSE.txt + */ +package org.collectionspace.services.client; + +/** + * ExhibitionClient.java + */ +public class ExhibitionClient extends AbstractCommonListPoxServiceClientImpl { + + public static final String SERVICE_NAME = "exhibitions"; + public static final String SERVICE_PATH_COMPONENT = SERVICE_NAME; + public static final String SERVICE_PATH = "/" + SERVICE_PATH_COMPONENT; + public static final String SERVICE_PATH_PROXY = SERVICE_PATH + "/"; + public static final String SERVICE_PAYLOAD_NAME = SERVICE_NAME; + + /* (non-Javadoc) + * @see org.collectionspace.services.client.AbstractServiceClientImpl#getServicePathComponent() + */ + @Override + public String getServicePathComponent() { + return SERVICE_PATH_COMPONENT; + } + + @Override + public String getServiceName() { + return SERVICE_NAME; + } + + @Override + public Class getProxyClass() { + return ExhibitionProxy.class; + } + +} diff --git a/services/exhibition/client/src/main/java/org/collectionspace/services/client/ExhibitionProxy.java b/services/exhibition/client/src/main/java/org/collectionspace/services/client/ExhibitionProxy.java new file mode 100644 index 000000000..bed42e2cf --- /dev/null +++ b/services/exhibition/client/src/main/java/org/collectionspace/services/client/ExhibitionProxy.java @@ -0,0 +1,30 @@ +/** + * This document is a part of the source code and related artifacts + * for CollectionSpace, an open source collections management system + * for museums and related institutions: + * + * http://www.collectionspace.org + * http://wiki.collectionspace.org + * + * Copyright (c) 2009 Regents of the University of California + * + * Licensed under the Educational Community License (ECL), Version 2.0. + * You may not use this file except in compliance with this License. + * + * You may obtain a copy of the ECL 2.0 License at + * https://source.collectionspace.org/collection-space/LICENSE.txt + */ +package org.collectionspace.services.client; + +import javax.ws.rs.Consumes; +import javax.ws.rs.Path; +import javax.ws.rs.Produces; + +/** + * ExhibitionProxy.java + */ +@Path(ExhibitionClient.SERVICE_PATH_PROXY) +@Produces({"application/xml"}) +@Consumes({"application/xml"}) +public interface ExhibitionProxy extends CollectionSpaceCommonListPoxProxy { +} diff --git a/services/exhibition/client/src/test/java/org/collectionspace/services/client/test/ExhibitionServiceTest.java b/services/exhibition/client/src/test/java/org/collectionspace/services/client/test/ExhibitionServiceTest.java new file mode 100644 index 000000000..5a824ed9d --- /dev/null +++ b/services/exhibition/client/src/test/java/org/collectionspace/services/client/test/ExhibitionServiceTest.java @@ -0,0 +1,689 @@ +/** + * This document is a part of the source code and related artifacts + * for CollectionSpace, an open source collections management system + * for museums and related institutions: + * + * http://www.collectionspace.org + * http://wiki.collectionspace.org + * + * Copyright © 2009 Regents of the University of California + * + * Licensed under the Educational Community License (ECL), Version 2.0. + * You may not use this file except in compliance with this License. + * + * You may obtain a copy of the ECL 2.0 License at + * https://source.collectionspace.org/collection-space/LICENSE.txt + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.collectionspace.services.client.test; + +//import java.util.ArrayList; +import java.util.List; +import javax.ws.rs.core.Response; + +import org.collectionspace.services.client.AbstractCommonListUtils; +import org.collectionspace.services.client.CollectionSpaceClient; +import org.collectionspace.services.client.ExhibitionClient; +import org.collectionspace.services.client.PayloadInputPart; +import org.collectionspace.services.client.PayloadOutputPart; +import org.collectionspace.services.client.PoxPayloadIn; +import org.collectionspace.services.client.PoxPayloadOut; +import org.collectionspace.services.jaxb.AbstractCommonList; +import org.collectionspace.services.exhibition.ExhibitionsCommon; + +import org.jboss.resteasy.client.ClientResponse; +import org.testng.Assert; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +/** + * ExhibitionServiceTest, carries out tests against a + * deployed and running Exhibition Service. + */ +public class ExhibitionServiceTest extends AbstractPoxServiceTestImpl { + + /** The logger. */ + private final String CLASS_NAME = ExhibitionServiceTest.class.getName(); + private final Logger logger = LoggerFactory.getLogger(CLASS_NAME); + // Instance variables specific to this test. + /** The service path component. */ + final String SERVICE_NAME = "exhibitions"; + final String SERVICE_PATH_COMPONENT = "exhibitions"; + + /* (non-Javadoc) + * @see org.collectionspace.services.client.test.BaseServiceTest#getClientInstance() + */ + @Override + protected CollectionSpaceClient getClientInstance() { + return new ExhibitionClient(); + } + + /* (non-Javadoc) + * @see org.collectionspace.services.client.test.BaseServiceTest#getAbstractCommonList(org.jboss.resteasy.client.ClientResponse) + */ + @Override + protected AbstractCommonList getCommonList( + ClientResponse response) { + return response.getEntity(AbstractCommonList.class); + } + + // --------------------------------------------------------------- + // CRUD tests : CREATE tests + // --------------------------------------------------------------- + + // Success outcomes + + /* (non-Javadoc) + * @see org.collectionspace.services.client.test.ServiceTest#create(java.lang.String) + */ + @Override + // @Test(dataProvider = "testName", dataProviderClass = AbstractServiceTestImpl.class) + public void create(String testName) throws Exception { + // Perform setup, such as initializing the type of service request + // (e.g. CREATE, DELETE), its valid and expected status codes, and + // its associated HTTP method name (e.g. POST, DELETE). + setupCreate(); + + // Submit the request to the service and store the response. + ExhibitionClient client = new ExhibitionClient(); + String identifier = createIdentifier(); + PoxPayloadOut multipart = createExhibitionInstance(identifier); + String newID = null; + ClientResponse res = client.create(multipart); + try { + int statusCode = res.getStatus(); + + // Check the status code of the response: does it match + // the expected response(s)? + // + // Specifically: + // Does it fall within the set of valid status codes? + // Does it exactly match the expected status code? + if (logger.isDebugEnabled()) { + logger.debug(testName + ": status = " + statusCode); + } + Assert.assertTrue(testRequestType.isValidStatusCode(statusCode), + invalidStatusCodeMessage(testRequestType, statusCode)); + Assert.assertEquals(statusCode, testExpectedStatusCode); + + newID = extractId(res); + } finally { + if (res != null) { + res.releaseConnection(); + } + } + + // Store the ID returned from the first resource created + // for additional tests below. + if (knownResourceId == null) { + knownResourceId = newID; + if (logger.isDebugEnabled()) { + logger.debug(testName + ": knownResourceId=" + knownResourceId); + } + } + + // Store the IDs from every resource created by tests, + // so they can be deleted after tests have been run. + allResourceIdsCreated.add(newID); + } + + /* (non-Javadoc) + * @see org.collectionspace.services.client.test.AbstractServiceTestImpl#createList(java.lang.String) + */ + @Override + // @Test(dataProvider = "testName", dataProviderClass = AbstractServiceTestImpl.class, + // dependsOnMethods = {"create"}) + public void createList(String testName) throws Exception { + for (int i = 0; i < 3; i++) { + create(testName); + } + } + + + /* + @Override + @Test(dataProvider="testName", dataProviderClass=AbstractServiceTest.class, + dependsOnMethods = {"create", "testSubmitRequest"}) + public void createWithEmptyEntityBody(String testName) throws Exception { + + if (logger.isDebugEnabled()) { + logger.debug(testBanner(testName, CLASS_NAME)); + } + // Perform setup. + setupCreateWithEmptyEntityBody(); + + // Submit the request to the service and store the response. + String method = REQUEST_TYPE.httpMethodName(); + String url = getServiceRootURL(); + String mediaType = MediaType.APPLICATION_XML; + final String entity = ""; + int statusCode = submitRequest(method, url, mediaType, entity); + + // Check the status code of the response: does it match + // the expected response(s)? + if(logger.isDebugEnabled()){ + logger.debug("createWithEmptyEntityBody url=" + url + + " status=" + statusCode); + } + Assert.assertTrue(REQUEST_TYPE.isValidStatusCode(statusCode), + invalidStatusCodeMessage(REQUEST_TYPE, statusCode)); + Assert.assertEquals(statusCode, EXPECTED_STATUS_CODE); + } + + @Override + @Test(dataProvider="testName", dataProviderClass=AbstractServiceTest.class, + dependsOnMethods = {"create", "testSubmitRequest"}) + public void createWithMalformedXml(String testName) throws Exception { + + if (logger.isDebugEnabled()) { + logger.debug(testBanner(testName, CLASS_NAME)); + } + // Perform setup. + setupCreateWithMalformedXml(testName, logger); + + // Submit the request to the service and store the response. + String method = REQUEST_TYPE.httpMethodName(); + String url = getServiceRootURL(); + String mediaType = MediaType.APPLICATION_XML; + final String entity = MALFORMED_XML_DATA; // Constant from base class. + int statusCode = submitRequest(method, url, mediaType, entity); + + // Check the status code of the response: does it match + // the expected response(s)? + if(logger.isDebugEnabled()){ + logger.debug(testName + ": url=" + url + + " status=" + statusCode); + } + Assert.assertTrue(REQUEST_TYPE.isValidStatusCode(statusCode), + invalidStatusCodeMessage(REQUEST_TYPE, statusCode)); + Assert.assertEquals(statusCode, EXPECTED_STATUS_CODE); + } + + @Override + @Test(dataProvider="testName", dataProviderClass=AbstractServiceTest.class, + dependsOnMethods = {"create", "testSubmitRequest"}) + public void createWithWrongXmlSchema(String testName) throws Exception { + + if (logger.isDebugEnabled()) { + logger.debug(testBanner(testName, CLASS_NAME)); + } + // Perform setup. + setupCreateWithWrongXmlSchema(testName, logger); + + // Submit the request to the service and store the response. + String method = REQUEST_TYPE.httpMethodName(); + String url = getServiceRootURL(); + String mediaType = MediaType.APPLICATION_XML; + final String entity = WRONG_XML_SCHEMA_DATA; + int statusCode = submitRequest(method, url, mediaType, entity); + + // Check the status code of the response: does it match + // the expected response(s)? + if(logger.isDebugEnabled()){ + logger.debug(testName + ": url=" + url + + " status=" + statusCode); + } + Assert.assertTrue(REQUEST_TYPE.isValidStatusCode(statusCode), + invalidStatusCodeMessage(REQUEST_TYPE, statusCode)); + Assert.assertEquals(statusCode, EXPECTED_STATUS_CODE); + } + */ + + // --------------------------------------------------------------- + // CRUD tests : READ tests + // --------------------------------------------------------------- + + // Success outcomes + + /* (non-Javadoc) + * @see org.collectionspace.services.client.test.AbstractServiceTestImpl#read(java.lang.String) + */ + @Override + // @Test(dataProvider = "testName", dataProviderClass = AbstractServiceTestImpl.class, + // dependsOnMethods = {"create"}) + public void read(String testName) throws Exception { + // Perform setup. + setupRead(); + + // Submit the request to the service and store the response. + ExhibitionClient client = new ExhibitionClient(); + ClientResponse res = client.read(knownResourceId); + PoxPayloadIn input = null; + try { + assertStatusCode(res, testName); + input = new PoxPayloadIn(res.getEntity()); + } finally { + if (res != null) { + res.releaseConnection(); + } + } + + // Get the common part of the response and verify that it is not null. + PayloadInputPart payloadInputPart = input.getPart(client.getCommonPartName()); + ExhibitionsCommon exhibitionCommon = null; + if (payloadInputPart != null) { + exhibitionCommon = (ExhibitionsCommon) payloadInputPart.getBody(); + } + Assert.assertNotNull(exhibitionCommon); + + // Check selected fields. + + // Check the values of fields containing Unicode UTF-8 (non-Latin-1) characters. + String generalNote = exhibitionCommon.getGeneralNote(); + + if (logger.isDebugEnabled()) { + logger.debug("UTF-8 data sent=" + getUTF8DataFragment() + "\n" + + "UTF-8 data received=" + generalNote); + } + + Assert.assertEquals(generalNote, getUTF8DataFragment(), + "UTF-8 data retrieved '" + generalNote + + "' does not match expected data '" + getUTF8DataFragment()); + } + + // Failure outcomes + + /* (non-Javadoc) + * @see org.collectionspace.services.client.test.AbstractServiceTestImpl#readNonExistent(java.lang.String) + */ + @Override + // @Test(dataProvider = "testName", dataProviderClass = AbstractServiceTestImpl.class, + // dependsOnMethods = {"read"}) + public void readNonExistent(String testName) throws Exception { + // Perform setup. + setupReadNonExistent(); + + // Submit the request to the service and store the response. + ExhibitionClient client = new ExhibitionClient(); + ClientResponse res = client.read(NON_EXISTENT_ID); + try { + int statusCode = res.getStatus(); + + // Check the status code of the response: does it match + // the expected response(s)? + if (logger.isDebugEnabled()) { + logger.debug(testName + ": status = " + statusCode); + } + Assert.assertTrue(testRequestType.isValidStatusCode(statusCode), + invalidStatusCodeMessage(testRequestType, statusCode)); + Assert.assertEquals(statusCode, testExpectedStatusCode); + } finally { + if (res != null) { + res.releaseConnection(); + } + } + } + + // --------------------------------------------------------------- + // CRUD tests : READ_LIST tests + // --------------------------------------------------------------- + + // Success outcomes + + /* (non-Javadoc) + * @see org.collectionspace.services.client.test.AbstractServiceTestImpl#readList(java.lang.String) + */ + @Override + // @Test(dataProvider = "testName", dataProviderClass = AbstractServiceTestImpl.class, + // dependsOnMethods = {"createList", "read"}) + public void readList(String testName) throws Exception { + // Perform setup. + setupReadList(); + + // Submit the request to the service and store the response. + AbstractCommonList list = null; + ExhibitionClient client = new ExhibitionClient(); + ClientResponse res = client.readList(); + assertStatusCode(res, testName); + try { + int statusCode = res.getStatus(); + + // Check the status code of the response: does it match + // the expected response(s)? + if (logger.isDebugEnabled()) { + logger.debug(testName + ": status = " + statusCode); + } + Assert.assertTrue(testRequestType.isValidStatusCode(statusCode), + invalidStatusCodeMessage(testRequestType, statusCode)); + Assert.assertEquals(statusCode, testExpectedStatusCode); + + list = res.getEntity(); + } finally { + if (res != null) { + res.releaseConnection(); + } + } + + // Optionally output additional data about list members for debugging. + boolean iterateThroughList = true; + if(iterateThroughList && logger.isDebugEnabled()){ + AbstractCommonListUtils.ListItemsInAbstractCommonList(list, logger, testName); + } + + } + + // Failure outcomes + // None at present. + + // --------------------------------------------------------------- + // CRUD tests : UPDATE tests + // --------------------------------------------------------------- + + // Success outcomes + + /* (non-Javadoc) + * @see org.collectionspace.services.client.test.AbstractServiceTestImpl#update(java.lang.String) + */ + @Override + // @Test(dataProvider = "testName", dataProviderClass = AbstractServiceTestImpl.class, + // dependsOnMethods = {"read"}) + public void update(String testName) throws Exception { + // Perform setup. + setupRead(); + + // Retrieve the contents of a resource to update. + ExhibitionClient client = new ExhibitionClient(); + ClientResponse res = client.read(knownResourceId); + PoxPayloadIn input = null; + try { + assertStatusCode(res, testName); + input = new PoxPayloadIn(res.getEntity()); + if (logger.isDebugEnabled()) { + logger.debug("got object to update with ID: " + knownResourceId); + } + } finally { + if (res != null) { + res.releaseConnection(); + } + } + + // Extract the common part from the response. + PayloadInputPart payloadInputPart = input.getPart(client.getCommonPartName()); + ExhibitionsCommon exhibitionCommon = null; + if (payloadInputPart != null) { + exhibitionCommon = (ExhibitionsCommon) payloadInputPart.getBody(); + } + Assert.assertNotNull(exhibitionCommon); + + // Update the content of this resource. + exhibitionCommon.setExhibitionNumber("updated-" + exhibitionCommon.getExhibitionNumber()); + + String generalNote = exhibitionCommon.getGeneralNote(); + exhibitionCommon.setGeneralNote("updated-generalNote-" + generalNote); + + if (logger.isDebugEnabled()) { + logger.debug("to be updated object"); + logger.debug(objectAsXmlString(exhibitionCommon, ExhibitionsCommon.class)); + } + + setupUpdate(); + + // Submit the updated common part in an update request to the service + // and store the response. + PoxPayloadOut output = new PoxPayloadOut(this.getServicePathComponent()); + PayloadOutputPart commonPart = output.addPart(client.getCommonPartName(), exhibitionCommon); + res = client.update(knownResourceId, output); + try { + assertStatusCode(res, testName); + int statusCode = res.getStatus(); + // Check the status code of the response: does it match the expected response(s)? + if (logger.isDebugEnabled()) { + logger.debug(testName + ": status = " + statusCode); + } + Assert.assertTrue(testRequestType.isValidStatusCode(statusCode), + invalidStatusCodeMessage(testRequestType, statusCode)); + Assert.assertEquals(statusCode, testExpectedStatusCode); + input = new PoxPayloadIn(res.getEntity()); + } finally { + if (res != null) { + res.releaseConnection(); + } + } + + // Extract the updated common part from the response. + payloadInputPart = input.getPart(client.getCommonPartName()); + ExhibitionsCommon updatedExhibitionCommon = null; + if (payloadInputPart != null) { + updatedExhibitionCommon = (ExhibitionsCommon) payloadInputPart.getBody(); + } + Assert.assertNotNull(updatedExhibitionCommon); + + // Check selected fields in the updated common part. + Assert.assertEquals(updatedExhibitionCommon.getExhibitionNumber(), + exhibitionCommon.getExhibitionNumber(), + "Data in updated object did not match submitted data."); + + // Check the values of fields containing Unicode UTF-8 (non-Latin-1) characters. + String originalGeneralNote = exhibitionCommon.getGeneralNote(); + String updatedGeneralNote = updatedExhibitionCommon.getGeneralNote(); + + Assert.assertEquals(updatedGeneralNote, originalGeneralNote, + "Data in updated object did not match submitted data."); + + if(logger.isDebugEnabled()){ + logger.debug("UTF-8 data sent=" + originalGeneralNote + "\n" + + "UTF-8 data received=" + updatedGeneralNote); + } + Assert.assertTrue(updatedGeneralNote.contains(getUTF8DataFragment()), + "UTF-8 data retrieved '" + updatedGeneralNote + + "' does not match expected data '" + getUTF8DataFragment()); + } + + @Override + // @Test(dataProvider = "testName", dataProviderClass = AbstractServiceTestImpl.class, + // dependsOnMethods = {"update", "testSubmitRequest"}) + public void updateNonExistent(String testName) throws Exception { + // Perform setup. + setupUpdateNonExistent(); + + // Submit the request to the service and store the response. + // Note: The ID used in this 'create' call may be arbitrary. + // The only relevant ID may be the one used in update(), below. + ExhibitionClient client = new ExhibitionClient(); + PoxPayloadOut multipart = createExhibitionInstance(NON_EXISTENT_ID); + ClientResponse res = client.update(NON_EXISTENT_ID, multipart); + try { + int statusCode = res.getStatus(); + + // Check the status code of the response: does it match + // the expected response(s)? + if (logger.isDebugEnabled()) { + logger.debug(testName + ": status = " + statusCode); + } + Assert.assertTrue(testRequestType.isValidStatusCode(statusCode), + invalidStatusCodeMessage(testRequestType, statusCode)); + Assert.assertEquals(statusCode, testExpectedStatusCode); + } finally { + if (res != null) { + res.releaseConnection(); + } + } + } + + // --------------------------------------------------------------- + // CRUD tests : DELETE tests + // --------------------------------------------------------------- + + // Success outcomes + + /* (non-Javadoc) + * @see org.collectionspace.services.client.test.AbstractServiceTestImpl#delete(java.lang.String) + */ + @Override + // @Test(dataProvider = "testName", dataProviderClass = AbstractServiceTestImpl.class, + // dependsOnMethods = {"create", "readList", "testSubmitRequest", "update"}) + public void delete(String testName) throws Exception { + // Perform setup. + setupDelete(); + + // Submit the request to the service and store the response. + ExhibitionClient client = new ExhibitionClient(); + ClientResponse res = client.delete(knownResourceId); + try { + int statusCode = res.getStatus(); + + // Check the status code of the response: does it match + // the expected response(s)? + if (logger.isDebugEnabled()) { + logger.debug(testName + ": status = " + statusCode); + } + Assert.assertTrue(testRequestType.isValidStatusCode(statusCode), + invalidStatusCodeMessage(testRequestType, statusCode)); + Assert.assertEquals(statusCode, testExpectedStatusCode); + } finally { + if (res != null) { + res.releaseConnection(); + } + } + } + + // Failure outcomes + + /* (non-Javadoc) + * @see org.collectionspace.services.client.test.AbstractServiceTestImpl#deleteNonExistent(java.lang.String) + */ + @Override + // @Test(dataProvider = "testName", dataProviderClass = AbstractServiceTestImpl.class, + // dependsOnMethods = {"delete"}) + public void deleteNonExistent(String testName) throws Exception { + // Perform setup. + setupDeleteNonExistent(); + + // Submit the request to the service and store the response. + ExhibitionClient client = new ExhibitionClient(); + ClientResponse res = client.delete(NON_EXISTENT_ID); + try { + int statusCode = res.getStatus(); + + // Check the status code of the response: does it match + // the expected response(s)? + if (logger.isDebugEnabled()) { + logger.debug(testName + ": status = " + statusCode); + } + Assert.assertTrue(testRequestType.isValidStatusCode(statusCode), + invalidStatusCodeMessage(testRequestType, statusCode)); + Assert.assertEquals(statusCode, testExpectedStatusCode); + } finally { + if (res != null) { + res.releaseConnection(); + } + } + } + + // --------------------------------------------------------------- + // Utility tests : tests of code used in tests above + // --------------------------------------------------------------- + + /** + * Tests the code for manually submitting data that is used by several + * of the methods above. + */ + // @Test(dependsOnMethods = {"create", "read"}) + public void testSubmitRequest() { + + // Expected status code: 200 OK + final int EXPECTED_STATUS = Response.Status.OK.getStatusCode(); + + // Submit the request to the service and store the response. + String method = ServiceRequestType.READ.httpMethodName(); + String url = getResourceURL(knownResourceId); + int statusCode = submitRequest(method, url); + + // Check the status code of the response: does it match + // the expected response(s)? + if (logger.isDebugEnabled()) { + logger.debug("testSubmitRequest: url=" + url + + " status=" + statusCode); + } + Assert.assertEquals(statusCode, EXPECTED_STATUS); + + } + + // --------------------------------------------------------------- + // Utility methods used by tests above + // --------------------------------------------------------------- + + @Override + public String getServiceName() { + return SERVICE_NAME; + } + + /* (non-Javadoc) + * @see org.collectionspace.services.client.test.BaseServiceTest#getServicePathComponent() + */ + @Override + public String getServicePathComponent() { + return SERVICE_PATH_COMPONENT; + } + + @Override + protected PoxPayloadOut createInstance(String identifier) { + return createExhibitionInstance(identifier); + } + + /** + * Creates the exhibition instance. + * + * @param identifier the identifier + * @return the multipart output + */ + //private PoxPayloadOut createExhibitionInstance(String identifier) { + // return createExhibitionInstance("exhibitionNumber-" + identifier); + //} + + /** + * Creates the exhibition instance. + * + * @param exhibitionNumber the exhibition number + * @return the multipart output + */ + private PoxPayloadOut createExhibitionInstance(String exhibitionNumber) { + + ExhibitionsCommon exhibitionCommon = new ExhibitionsCommon(); + exhibitionCommon.setExhibitionNumber(exhibitionNumber); + exhibitionCommon.setGeneralNote(getUTF8DataFragment()); + + PoxPayloadOut multipart = new PoxPayloadOut(this.getServicePathComponent()); + PayloadOutputPart commonPart = + multipart.addPart(new ExhibitionClient().getCommonPartName(), exhibitionCommon); + + if (logger.isDebugEnabled()) { + logger.debug("to be created, exhibition common"); + logger.debug(objectAsXmlString(exhibitionCommon, ExhibitionsCommon.class)); + } + + return multipart; + } + + @Override + public void CRUDTests(String testName) { + // TODO Auto-generated method stub + + } + + @Override + protected PoxPayloadOut createInstance(String commonPartName, + String identifier) { + PoxPayloadOut result = createExhibitionInstance(identifier); + return result; + } + + @Override + protected ExhibitionsCommon updateInstance(ExhibitionsCommon commonPartObject) { + // TODO Auto-generated method stub + return null; + } + + @Override + protected void compareUpdatedInstances(ExhibitionsCommon original, + ExhibitionsCommon updated) throws Exception { + // TODO Auto-generated method stub + + } +} diff --git a/services/exhibition/client/src/test/resources/log4j.properties b/services/exhibition/client/src/test/resources/log4j.properties new file mode 100644 index 000000000..148a3e865 --- /dev/null +++ b/services/exhibition/client/src/test/resources/log4j.properties @@ -0,0 +1,23 @@ +log4j.rootLogger=debug, stdout, R + +log4j.appender.stdout=org.apache.log4j.ConsoleAppender +log4j.appender.stdout.layout=org.apache.log4j.PatternLayout + +# Pattern to output the caller's file name and line number. +log4j.appender.stdout.layout.ConversionPattern=%d %-5p [%t] [%c:%L] %m%n + +log4j.appender.R=org.apache.log4j.RollingFileAppender +log4j.appender.R.File=target/test-client.log + +log4j.appender.R.MaxFileSize=100KB +# Keep one backup file +log4j.appender.R.MaxBackupIndex=1 + +log4j.appender.R.layout=org.apache.log4j.PatternLayout +log4j.appender.R.layout.ConversionPattern=%d %-5p [%t] [%c:%L] %m%n + +#packages +log4j.logger.org.collectionspace=DEBUG +log4j.logger.org.apache=INFO +log4j.logger.httpclient=INFO +log4j.logger.org.jboss.resteasy=INFO diff --git a/services/exhibition/jaxb/pom.xml b/services/exhibition/jaxb/pom.xml new file mode 100644 index 000000000..24ac715c0 --- /dev/null +++ b/services/exhibition/jaxb/pom.xml @@ -0,0 +1,34 @@ + + + + org.collectionspace.services.exhibition + org.collectionspace.services + 4.2-SNAPSHOT + + + 4.0.0 + org.collectionspace.services + org.collectionspace.services.exhibition.jaxb + services.exhibition.jaxb + + + + org.collectionspace.services + org.collectionspace.services.jaxb + ${project.version} + + + + + collectionspace-services-exhibition-jaxb + install + + + org.jvnet.jaxb2.maven2 + maven-jaxb2-plugin + + + + diff --git a/services/exhibition/jaxb/src/main/java/org/collectionspace/services/ExhibitionJAXBSchema.java b/services/exhibition/jaxb/src/main/java/org/collectionspace/services/ExhibitionJAXBSchema.java new file mode 100644 index 000000000..780860b43 --- /dev/null +++ b/services/exhibition/jaxb/src/main/java/org/collectionspace/services/ExhibitionJAXBSchema.java @@ -0,0 +1,8 @@ +/** + * + */ +package org.collectionspace.services; + +public interface ExhibitionJAXBSchema { + final static String EXHIBITION_NUMBER = "exhibitionNumber"; +} diff --git a/services/exhibition/jaxb/src/main/java/org/collectionspace/services/ExhibitionListItemJAXBSchema.java b/services/exhibition/jaxb/src/main/java/org/collectionspace/services/ExhibitionListItemJAXBSchema.java new file mode 100644 index 000000000..297486a98 --- /dev/null +++ b/services/exhibition/jaxb/src/main/java/org/collectionspace/services/ExhibitionListItemJAXBSchema.java @@ -0,0 +1,14 @@ +package org.collectionspace.services; + +public interface ExhibitionListItemJAXBSchema { + final static String EXHIBITION_REF_NUMBER = "exhibitionRefNumber"; + final static String VALUE_CURRENCY = "valueCurrency"; + final static String VALUE_AMOUNT = "valueAmount"; + final static String VALUE_DATE = "valueDate"; + final static String VALUE_RENEWAL_DATE = "valueRenewalDate"; + final static String VALUE_SOURCE = "valueSource"; + final static String VALUE_TYPE = "valueType"; + final static String VALUE_NOTE = "valueNote"; + final static String CSID = "csid"; + final static String URI = "url"; +} diff --git a/services/exhibition/jaxb/src/main/resources/exhibitions-common.xsd b/services/exhibition/jaxb/src/main/resources/exhibitions-common.xsd new file mode 100644 index 000000000..f1a7bed01 --- /dev/null +++ b/services/exhibition/jaxb/src/main/resources/exhibitions-common.xsd @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + diff --git a/services/exhibition/pom.xml b/services/exhibition/pom.xml new file mode 100644 index 000000000..07dd9860b --- /dev/null +++ b/services/exhibition/pom.xml @@ -0,0 +1,23 @@ + + + + + org.collectionspace.services + org.collectionspace.services.main + 4.2-SNAPSHOT + + + 4.0.0 + org.collectionspace.services + org.collectionspace.services.exhibition + services.exhibition + pom + + + jaxb + service + 3rdparty + client + + + diff --git a/services/exhibition/service/pom.xml b/services/exhibition/service/pom.xml new file mode 100644 index 000000000..56be4cd96 --- /dev/null +++ b/services/exhibition/service/pom.xml @@ -0,0 +1,105 @@ + + + + + org.collectionspace.services + org.collectionspace.services.exhibition + 4.2-SNAPSHOT + + + 4.0.0 + org.collectionspace.services + org.collectionspace.services.exhibition.service + services.exhibition.service + jar + + + + org.collectionspace.services + org.collectionspace.services.common + ${project.version} + + + org.collectionspace.services + org.collectionspace.services.exhibition.jaxb + ${project.version} + + + org.collectionspace.services + org.collectionspace.services.exhibition.client + ${project.version} + + + org.collectionspace.services + org.collectionspace.services.collectionobject.jaxb + ${project.version} + + + + junit + junit + test + + + org.testng + testng + + + + + + javax.security + jaas + 1.0.01 + provided + + + + dom4j + dom4j + 1.6.1 + provided + + + + + + org.jboss.resteasy + resteasy-jaxrs + + + tjws + webserver + + + + + org.jboss.resteasy + resteasy-jaxb-provider + + + org.jboss.resteasy + resteasy-multipart-provider + + + + + + org.nuxeo.ecm.core + nuxeo-core-api + ${nuxeo.core.version} + + + jboss-remoting + jboss + + + + + + + + collectionspace-services-exhibition + + + diff --git a/services/exhibition/service/profiles.xml b/services/exhibition/service/profiles.xml new file mode 100644 index 000000000..7c9dc966e --- /dev/null +++ b/services/exhibition/service/profiles.xml @@ -0,0 +1,4 @@ + + + diff --git a/services/exhibition/service/src/main/java/org/collectionspace/services/exhibition/ExhibitionResource.java b/services/exhibition/service/src/main/java/org/collectionspace/services/exhibition/ExhibitionResource.java new file mode 100644 index 000000000..59d8aa44f --- /dev/null +++ b/services/exhibition/service/src/main/java/org/collectionspace/services/exhibition/ExhibitionResource.java @@ -0,0 +1,58 @@ +/** + * This document is a part of the source code and related artifacts + * for CollectionSpace, an open source collections management system + * for museums and related institutions: + * + * http://www.collectionspace.org + * http://wiki.collectionspace.org + * + * Copyright 2009 University of California at Berkeley + * + * Licensed under the Educational Community License (ECL), Version 2.0. + * You may not use this file except in compliance with this License. + * + * You may obtain a copy of the ECL 2.0 License at + * + * https://source.collectionspace.org/collection-space/LICENSE.txt + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.collectionspace.services.exhibition; + +import org.collectionspace.services.client.ExhibitionClient; +import org.collectionspace.services.common.NuxeoBasedResource; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import javax.ws.rs.Consumes; +import javax.ws.rs.Path; +import javax.ws.rs.Produces; + +@Path(ExhibitionClient.SERVICE_PATH) +@Consumes("application/xml") +@Produces("application/xml") +public class ExhibitionResource extends NuxeoBasedResource { + + final Logger logger = LoggerFactory.getLogger(ExhibitionResource.class); + + @Override + protected String getVersionString() { + final String lastChangeRevision = "$LastChangedRevision$"; + return lastChangeRevision; + } + + @Override + public String getServiceName() { + return ExhibitionClient.SERVICE_NAME; + } + + @Override + public Class getCommonPartClass() { + return ExhibitionsCommon.class; + } +} + diff --git a/services/exhibition/service/src/main/java/org/collectionspace/services/exhibition/nuxeo/ExhibitionConstants.java b/services/exhibition/service/src/main/java/org/collectionspace/services/exhibition/nuxeo/ExhibitionConstants.java new file mode 100644 index 000000000..0b21c1b98 --- /dev/null +++ b/services/exhibition/service/src/main/java/org/collectionspace/services/exhibition/nuxeo/ExhibitionConstants.java @@ -0,0 +1,35 @@ +/** + * This document is a part of the source code and related artifacts + * for CollectionSpace, an open source collections management system + * for museums and related institutions: + * + * http://www.collectionspace.org + * http://wiki.collectionspace.org + * + * Copyright 2009 University of California at Berkeley + * + * Licensed under the Educational Community License (ECL), Version 2.0. + * You may not use this file except in compliance with this License. + * + * You may obtain a copy of the ECL 2.0 License at + * + * https://source.collectionspace.org/collection-space/LICENSE.txt + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.collectionspace.services.exhibition.nuxeo; + +/** + * ExhibitionConstants specifies constants for the Exhibition service + * + */ +public class ExhibitionConstants { + + public final static String NUXEO_DOCTYPE = "Exhibition"; + public final static String NUXEO_SCHEMA_NAME = "exhibition"; + public final static String NUXEO_DC_TITLE = "CollectionSpace-Exhibition"; +} diff --git a/services/exhibition/service/src/main/java/org/collectionspace/services/exhibition/nuxeo/ExhibitionDocumentModelHandler.java b/services/exhibition/service/src/main/java/org/collectionspace/services/exhibition/nuxeo/ExhibitionDocumentModelHandler.java new file mode 100644 index 000000000..6dff613d4 --- /dev/null +++ b/services/exhibition/service/src/main/java/org/collectionspace/services/exhibition/nuxeo/ExhibitionDocumentModelHandler.java @@ -0,0 +1,33 @@ +/** + * This document is a part of the source code and related artifacts + * for CollectionSpace, an open source collections management system + * for museums and related institutions: + * + * http://www.collectionspace.org + * http://wiki.collectionspace.org + * + * Copyright 2009 University of California at Berkeley + * + * Licensed under the Educational Community License (ECL), Version 2.0. + * You may not use this file except in compliance with this License. + * + * You may obtain a copy of the ECL 2.0 License at + * + * https://source.collectionspace.org/collection-space/LICENSE.txt + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.collectionspace.services.exhibition.nuxeo; + +import org.collectionspace.services.exhibition.ExhibitionsCommon; +import org.collectionspace.services.nuxeo.client.java.NuxeoDocumentModelHandler; + +/** ExhibitionDocumentModelHandler + */ +public class ExhibitionDocumentModelHandler + extends NuxeoDocumentModelHandler { +} diff --git a/services/exhibition/service/src/main/java/org/collectionspace/services/exhibition/nuxeo/ExhibitionValidatorHandler.java b/services/exhibition/service/src/main/java/org/collectionspace/services/exhibition/nuxeo/ExhibitionValidatorHandler.java new file mode 100644 index 000000000..422f8c13f --- /dev/null +++ b/services/exhibition/service/src/main/java/org/collectionspace/services/exhibition/nuxeo/ExhibitionValidatorHandler.java @@ -0,0 +1,18 @@ +package org.collectionspace.services.exhibition.nuxeo; + +import org.collectionspace.services.common.context.ServiceContext; +import org.collectionspace.services.common.document.InvalidDocumentException; +import org.collectionspace.services.common.document.ValidatorHandler; +import org.collectionspace.services.common.document.DocumentHandler.Action; + +public class ExhibitionValidatorHandler implements ValidatorHandler { + + @Override + public void validate(Action action, ServiceContext ctx) + throws InvalidDocumentException { + // TODO Auto-generated method stub + System.out.println("ExhibitionValidatorHandler executed."); + + } + +} diff --git a/services/exhibition/service/src/test/java/org/collectionspace/services/test/ExhibitionServiceTest.java b/services/exhibition/service/src/test/java/org/collectionspace/services/test/ExhibitionServiceTest.java new file mode 100644 index 000000000..f3f946c68 --- /dev/null +++ b/services/exhibition/service/src/test/java/org/collectionspace/services/test/ExhibitionServiceTest.java @@ -0,0 +1,11 @@ +package org.collectionspace.services.test; + +//import org.collectionspace.services.exhibition.Exhibition; +//import org.collectionspace.services.exhibition.ExhibitionList; + +/** + * Placeholder for server-side testing of Exhibition service code. + */ +public class ExhibitionServiceTest { + //empty +} diff --git a/services/exhibition/service/src/test/resources/log4j.xml b/services/exhibition/service/src/test/resources/log4j.xml new file mode 100644 index 000000000..3869b526d --- /dev/null +++ b/services/exhibition/service/src/test/resources/log4j.xml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/services/pom.xml b/services/pom.xml index 6b3b58194..867a8421c 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -61,6 +61,7 @@ intake loanin loanout + exhibition conditioncheck valuationcontrol objectexit -- 2.47.3