Package org.apache.lenya.cms.publication

Source Code of org.apache.lenya.cms.publication.DublinCoreTest

/*
* Licensed to the Apache Software Foundation (ASF) under one or more
*  contributor license agreements.  See the NOTICE file distributed with
*  this work for additional information regarding copyright ownership.
*  The ASF licenses this file to You under the Apache License, Version 2.0
*  (the "License"); you may not use this file except in compliance with
*  the License.  You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
*  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.apache.lenya.cms.publication;

import org.apache.lenya.ac.AccessControlException;
import org.apache.lenya.ac.impl.AbstractAccessControlTest;
import org.apache.lenya.cms.metadata.MetaData;
import org.apache.lenya.cms.metadata.MetaDataException;
import org.apache.lenya.cms.metadata.dublincore.DublinCore;
import org.apache.lenya.cms.repository.RepositoryException;

/**
* Dublin Core test.
*
* @version $Id: DublinCoreTest.java 485769 2006-12-11 17:41:23Z andreas $
*/
public class DublinCoreTest extends AbstractAccessControlTest {

    private static final String AREA = "authoring";
    private static final String PATH = "/tutorial";
    private static final String LANGUAGE = "de";

    /**
     * Test the fetching, modification and refetching of a dc core object.
     * @throws PublicationException
     * @throws MetaDataException
     * @throws RepositoryException
     * @throws AccessControlException
     * @throws RepositoryException
     */
    final public void testModifySaveAndReload() throws PublicationException, MetaDataException,
            AccessControlException, RepositoryException {
       
        login("lenya");
       
        Publication publication = getPublication("test");
       
        Document doc = publication.getArea(AREA).getSite().getNode(PATH).getLink(LANGUAGE).getDocument();
       
        doc.getRepositoryNode().lock();
       
        MetaData dcCore = doc.getMetaData(DublinCore.DC_NAMESPACE);
        String title = dcCore.getFirstValue(DublinCore.ELEMENT_TITLE);
        String subject = dcCore.getFirstValue(DublinCore.ELEMENT_SUBJECT);
        String creator = dcCore.getFirstValue(DublinCore.ELEMENT_CREATOR);
       
        if (creator == null) {
            creator = "test";
        }

        String newCreator = creator + "-test";
        dcCore.setValue(DublinCore.ELEMENT_CREATOR, newCreator);

        Document doc2 = publication.getArea(AREA).getSite().getNode(PATH).getLink(LANGUAGE).getDocument();

        MetaData dcCore2 = doc2.getMetaData(DublinCore.DC_NAMESPACE);
        assertEquals(title, dcCore2.getFirstValue(DublinCore.ELEMENT_TITLE));
        assertEquals(subject, dcCore2.getFirstValue(DublinCore.ELEMENT_SUBJECT));
        assertFalse(creator.equals(dcCore2.getFirstValue(DublinCore.ELEMENT_CREATOR)));
        assertEquals(newCreator, dcCore2.getFirstValue(DublinCore.ELEMENT_CREATOR));
       
        doc.getRepositoryNode().unlock();
    }

}
TOP

Related Classes of org.apache.lenya.cms.publication.DublinCoreTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.