Package org.apache.roller.planet.business

Source Code of org.apache.roller.planet.business.PlanetBasicTests

/*
* Copyright 2005 Sun Microsystems, Inc.
*
* Licensed 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.roller.planet.business;

import java.util.List;
import junit.framework.TestCase;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.roller.planet.TestUtils;
import org.apache.roller.planet.pojos.Planet;


/**
* Test Planet CRUD.
*/
public class PlanetBasicTests extends TestCase {
   
    public static Log log = LogFactory.getLog(PlanetBasicTests.class);
   
   
    public void testPlanetCRUD() throws Exception {
       
        // setup planet
        TestUtils.setupPlanet();

        PlanetManager mgr = PlanetFactory.getPlanet().getPlanetManager();
       
        Planet testPlanet = new Planet("testPlanet", "testPlanet", "testPlanet");
        Planet planet = null;
       
        planet = mgr.getPlanet("testPlanet");
        assertNull(planet);
       
        // add
        mgr.savePlanet(testPlanet);
        TestUtils.endSession(true);
       
        // verify
        planet = null;
        planet = mgr.getPlanetById(testPlanet.getId());
        assertNotNull(planet);
        assertEquals("testPlanet", planet.getHandle());
       
        // modify
        planet.setTitle("foo");
        mgr.savePlanet(planet);
        TestUtils.endSession(true);
       
        // verify
        planet = null;
        planet = mgr.getPlanetById(testPlanet.getId());
        assertNotNull(planet);
        assertEquals("foo", planet.getTitle());
       
        // remove
        mgr.deletePlanet(planet);
        TestUtils.endSession(true);
       
        // verify
        planet = null;
        planet = mgr.getPlanet(testPlanet.getId());
        assertNull(planet);
    }
   
}
TOP

Related Classes of org.apache.roller.planet.business.PlanetBasicTests

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.