Test for RestTemplateAPI
This commit is contained in:
@@ -0,0 +1,81 @@
|
||||
/**
|
||||
* Copyright 2011 the original author or authors.
|
||||
*
|
||||
* 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.springframework.data.graph.neo4j.rest.integration;
|
||||
|
||||
import org.junit.AfterClass;
|
||||
import org.junit.BeforeClass;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
import org.neo4j.graphdb.GraphDatabaseService;
|
||||
import org.springframework.dao.DataAccessException;
|
||||
import org.springframework.data.graph.core.GraphDatabase;
|
||||
import org.springframework.data.graph.neo4j.config.NullTransactionManager;
|
||||
import org.springframework.data.graph.neo4j.rest.support.RestTestHelper;
|
||||
import org.springframework.data.graph.neo4j.template.Neo4jTemplateApiTest;
|
||||
import org.springframework.transaction.PlatformTransactionManager;
|
||||
import org.springframework.transaction.jta.JtaTransactionManager;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
public class RestNeo4jTemplateApiTest extends Neo4jTemplateApiTest
|
||||
{
|
||||
private static RestTestHelper testHelper;
|
||||
|
||||
@BeforeClass
|
||||
public static void startServer() throws Exception
|
||||
{
|
||||
testHelper = new RestTestHelper();
|
||||
testHelper.startServer();
|
||||
}
|
||||
|
||||
@Test
|
||||
@Ignore
|
||||
public void shouldRollbackTransactionOnException() {}
|
||||
|
||||
@Test
|
||||
@Ignore
|
||||
public void shouldRollbackViaStatus() throws Exception {}
|
||||
|
||||
@Test(expected = DataAccessException.class)
|
||||
@Ignore
|
||||
public void shouldConvertMissingTransactionExceptionToDataAccessException() {}
|
||||
|
||||
|
||||
@AfterClass
|
||||
public static void stopServer() throws Exception
|
||||
{
|
||||
testHelper.shutdownServer();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected PlatformTransactionManager createTransactionManager()
|
||||
{
|
||||
return new JtaTransactionManager(new NullTransactionManager());
|
||||
}
|
||||
|
||||
@Override
|
||||
protected GraphDatabase createGraphDatabase() throws Exception
|
||||
{
|
||||
testHelper.cleanDb();
|
||||
return testHelper.createGraphDatabase();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected GraphDatabaseService createGraphDatabaseService() throws IOException {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user