Package org.apache.jena.jdbc.remote.results

Source Code of org.apache.jena.jdbc.remote.results.TestRemoteEndpointResultsWithGraphUris

/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you 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.jena.jdbc.remote.results;

import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.List;

import org.apache.jena.fuseki.ServerTest;
import org.apache.jena.jdbc.JdbcCompatibility;
import org.apache.jena.jdbc.connections.JenaConnection;
import org.apache.jena.jdbc.remote.connections.RemoteEndpointConnection;
import org.apache.jena.jdbc.utils.TestUtils;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.BeforeClass;

import com.hp.hpl.jena.query.Dataset;

/**
* Tests result sets from a remote endpoint
*
*/
public class TestRemoteEndpointResultsWithGraphUris extends AbstractRemoteEndpointResultSetTests {
   
    /**
     * Constant for default graph URI used in these tests
     */
    private static final String DEFAULT_GRAPH_URI = "http://example.org/defaultGraphUri";
   
    private static RemoteEndpointConnection connection;
   
    /**
     * Setup for the tests by allocating a Fuseki instance to work with
     * @throws SQLException
     */
    @BeforeClass
    public static void setup() throws SQLException {
        ServerTest.allocServer();
       
        List<String> defaultGraphUris = new ArrayList<String>();
        defaultGraphUris.add(DEFAULT_GRAPH_URI);
        connection = new RemoteEndpointConnection(ServerTest.serviceQuery, ServerTest.serviceUpdate, defaultGraphUris, null, defaultGraphUris, null, null, JenaConnection.DEFAULT_HOLDABILITY, JdbcCompatibility.DEFAULT, null, null);
        connection.setJdbcCompatibilityLevel(JdbcCompatibility.HIGH);
    }
   
    /**
     * Clean up after each test by resetting the Fuseki instance
     * @throws InterruptedException
     */
    @After
    public void cleanupTest() throws InterruptedException {
        ServerTest.resetServer();
    }
   
    /**
     * Clean up after tests by de-allocating the Fuseki instance
     * @throws SQLException
     * @throws InterruptedException
     */
    @AfterClass
    public static void cleanup() throws SQLException, InterruptedException {
        connection.close();
        ServerTest.freeServer();
    }

    @Override
    protected ResultSet createResults(Dataset ds, String query) throws SQLException {
        return createResults(ds, query, ResultSet.TYPE_FORWARD_ONLY);
    }
   
    @Override
    protected ResultSet createResults(Dataset ds, String query, int resultSetType) throws SQLException {
        ds = TestUtils.renameGraph(ds, null, DEFAULT_GRAPH_URI);
        TestUtils.copyToRemoteDataset(ds, ServerTest.serviceREST);
        Statement stmt = connection.createStatement(resultSetType, ResultSet.CONCUR_READ_ONLY);
        return stmt.executeQuery(query);
    }
   

}
TOP

Related Classes of org.apache.jena.jdbc.remote.results.TestRemoteEndpointResultsWithGraphUris

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.