blob: 9ee25bbf2e0e7ec9e6fa7f2763112f4729378959 [file] [log] [blame]
/*
* 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 org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.roller.planet.pojos.Planet;
import org.apache.roller.weblogger.TestUtils;
import org.apache.roller.weblogger.business.WebloggerFactory;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
/**
* Test Planet CRUD.
*/
public class PlanetBasicTests {
public static Log log = LogFactory.getLog(PlanetBasicTests.class);
@Test
public void testPlanetCRUD() throws Exception {
// setup planet
TestUtils.setupWeblogger();
PlanetManager mgr = WebloggerFactory.getWeblogger().getPlanetManager();
Planet testPlanet = new Planet("testPlanet", "testPlanet", "testPlanet");
Planet planet = null;
planet = mgr.getWeblogger("testPlanet");
assertNull(planet);
// add
mgr.savePlanet(testPlanet);
TestUtils.endSession(true);
// verify
planet = null;
planet = mgr.getWebloggerById(testPlanet.getId());
assertNotNull(planet);
assertEquals("testPlanet", planet.getHandle());
// modify
planet.setTitle("foo");
mgr.savePlanet(planet);
TestUtils.endSession(true);
// verify
planet = null;
planet = mgr.getWebloggerById(testPlanet.getId());
assertNotNull(planet);
assertEquals("foo", planet.getTitle());
// remove
mgr.deletePlanet(planet);
TestUtils.endSession(true);
// verify
planet = null;
planet = mgr.getWeblogger(testPlanet.getId());
assertNull(planet);
}
}