blob: b06a5bc9c10aa9b7f16adc9bbd81b53199c7548f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010-2013 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
* which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* dclarke - EclipseLink 2.3 - MySports Demo Bug 344608
******************************************************************************/
package eclipselink.example.mysports.admin.services.test;
import javax.persistence.EntityManagerFactory;
import org.eclipse.persistence.jpa.JpaHelper;
import org.eclipse.persistence.sessions.server.Server;
import org.junit.AfterClass;
import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.Test;
import eclipselink.example.mysports.admin.examples.ExampleLeagueDefinition;
import eclipselink.example.mysports.admin.services.HostedLeagueRepository;
/**
* Create initial league entities.
*
* @author dclarke
* @since EclipseLink 2.3.0
*/
public class TestCreateLeagues {
@Test
public void verifySession() {
EntityManagerFactory emf = AdminPersistenceTesting.getEMF(repository);
Assert.assertNotNull(emf);
Server session = JpaHelper.getServerSession(emf);
Assert.assertNotNull(session);
Assert.assertTrue(session.isServerSession());
}
@Test
public void createLeagues() {
ExampleLeagueDefinition.populateAll(repository);
}
private static HostedLeagueRepository repository;
@BeforeClass
public static void createRespository() {
repository = AdminPersistenceTesting.createTestRepository(true, false);
}
@AfterClass
public static void closeRepository() {
AdminPersistenceTesting.closeTestingRepository(repository, false);
}
}