/** * Copyright (c) 2009--2013 Red Hat, Inc. * * This software is licensed to you under the GNU General Public License, * version 2 (GPLv2). There is NO WARRANTY for this software, express or * implied, including the implied warranties of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 * along with this software; if not, see * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * * Red Hat trademarks are not licensed under GPLv2. No permission is * granted to use or replicate Red Hat trademarks that are incorporated * in this software or its documentation. */ package com.redhat.rhn.testing; import com.redhat.rhn.domain.common.LoggingFactory; import com.redhat.rhn.domain.kickstart.test.KickstartDataTest; import com.redhat.rhn.domain.org.OrgFactory; import com.redhat.rhn.domain.user.User; /** * Basic test class class with a User * @version $Rev: 54849 $ */ public abstract class BaseTestCaseWithUser extends RhnBaseTestCase { protected User user; private boolean committed = false; /** * {@inheritDoc} */ public void setUp() throws Exception { super.setUp(); user = UserTestUtils.findNewUser("testUser", "testOrg" + this.getClass().getSimpleName()); KickstartDataTest.setupTestConfiguration(user); } /** * {@inheritDoc} */ public void tearDown() throws Exception { super.tearDown(); // If at some point we created a user and committed the transaction, we need // clean up our mess if (committed) { // Set up logging again, as Hibernate might have swapped the connection // with a new one after the commit LoggingFactory.clearLogId(); OrgFactory.deleteOrg(user.getOrg().getId(), user); commitAndCloseSession(); } committed = false; user = null; } // If we have to commit in mid-test, set up the next transaction correctly protected void commitHappened() { committed = true; try { LoggingFactory.clearLogId(); } catch (Exception se) { TestCaseHelper.tearDownHelper(); LoggingFactory.clearLogId(); } } }