Examples of SupportFilesSetup


Examples of org.apache.derbyTesting.junit.SupportFilesSetup

     */  
    public static Test suite(int phase) {
        TestSuite suite = new TestSuite("Upgrade test for 10.4");
       
        suite.addTestSuite(Changes10_4.class);
        return new SupportFilesSetup((Test) suite);
    }
View Full Code Here

Examples of org.apache.derbyTesting.junit.SupportFilesSetup

        // However, this only happens after the test is finished, so we
        // can't run both embedded and networkserver for the database
        // wouldn't get created with networkserver.
        suite.addTest(
            TestConfiguration.embeddedSuite(EncryptionAESTest.class));
        return new SupportFilesSetup(suite);
    }
View Full Code Here

Examples of org.apache.derbyTesting.junit.SupportFilesSetup

        // Install a security manager using the initial policy file.
        //
        test = new SecurityManagerSetup(test,serverPolicyName );
        // Copy over the policy file we want to use.
        //
        test = new SupportFilesSetup(
            test, null, new String[] {POLICY_FILE_NAME},
            null, new String[] {TARGET_POLICY_FILE_NAME}
        );
        return test;
    }
View Full Code Here

Examples of org.apache.derbyTesting.junit.SupportFilesSetup

        if (JDBC.vmSupportsJDBC3()) {
            suite.addTest(SecurityManagerSetup.noSecurityManager(
                     decorate(new NetHarnessJavaTest("DerbyNetNewServer"))));
        }
       
        return new SupportFilesSetup(suite,
                     new String[] {
                         "functionTests/tests/derbynet/protocol.tests",
                         "functionTests/tests/derbynet/excsat_accsecrd1.inc",
                         "functionTests/tests/derbynet/excsat_accsecrd2.inc",
                         "functionTests/tests/derbynet/excsat_secchk.inc",
View Full Code Here

Examples of org.apache.derbyTesting.junit.SupportFilesSetup

        return suite;
  }
 
  public static Test baseSuite(String name) {
    TestSuite suite = new TestSuite(ImportExportTest.class, name);
    Test test = new SupportFilesSetup(suite, new String[] {"functionTests/testData/ImportExport/TwoLineBadEOF.dat"} );
    return new CleanDatabaseTestSetup(test) {
            protected void decorateSQL(Statement s) throws SQLException {

                s.execute("CREATE TABLE T1 (COLUMN1 VARCHAR(5) , COLUMN2 VARCHAR(8) , " +
               "COLUMN3 SMALLINT , COLUMN4 CHAR(11) , COLUMN5 DATE , COLUMN6 DECIMAL(5,1) , " +
View Full Code Here

Examples of org.apache.derbyTesting.junit.SupportFilesSetup

    {
        TestSuite suite = new TestSuite(ImportExportBinaryDataTest.class);
        suite.addTest(TestConfiguration.clientServerSuite(
                      ImportExportBinaryDataTest.class));
        Test test = suite;
        test = new SupportFilesSetup(test);
        return new CleanDatabaseTestSetup(test) {
                protected void decorateSQL(Statement s) throws SQLException {
                    // table used to test  export.
                    s.execute("CREATE TABLE BIN_TAB (id int," +
                              "C_BD CHAR(4) FOR BIT DATA," +
View Full Code Here

Examples of org.apache.derbyTesting.junit.SupportFilesSetup

        // Install a security manager using the initial policy file.
        //
        test = new SecurityManagerSetup(test,serverPolicyName );
        // Copy over the policy file we want to use.
        //
        test = new SupportFilesSetup(
                test, null, new String[] {POLICY_FILE_NAME},
                null, new String[] {TARGET_POLICY_FILE_NAME}
        );
        return test;
       
View Full Code Here

Examples of org.apache.derbyTesting.junit.SupportFilesSetup

        return suite;
    }

    public static Test baseSuite(String name) {
        TestSuite suite = new TestSuite(ConnectionMethodsTest.class, name);
        Test test = new SupportFilesSetup(suite, new String[] {"functionTests/testData/ConnectionMethods/short.txt"} );
        return new CleanDatabaseTestSetup(test) {
            protected void decorateSQL(Statement s) throws SQLException {
                s.execute("create table clobtable2(n int,clobcol CLOB)");
                s.execute("create table blobtable2(n int,blobcol BLOB)");
View Full Code Here

Examples of org.apache.derbyTesting.junit.SupportFilesSetup

            suite.addTest(collatedTest("pl", "testPolishCollation"));
        }
        suite.addTest(collatedTest(null, "testDefaultJVMTerritoryCollation"));
       
        // add support to use external files for import/export calls.
        Test test = new SupportFilesSetup(suite);

        // turn on log statement text for sequence of statements in derby.log. 
        if (verbose_debug)
        {
            Properties props = new Properties();
View Full Code Here

Examples of org.apache.derbyTesting.junit.SupportFilesSetup

    }

    protected static Test baseSuite(String name) {
        TestSuite suite = new TestSuite(name);
        suite.addTestSuite(StreamingColumnTest.class);
        Test test = new SupportFilesSetup(suite, new String[] {
                "functionTests/tests/store/short.data",
                "functionTests/tests/store/shortbanner",
                "functionTests/tests/store/derby.banner",
                "functionTests/tests/store/empty.data",
                "functionTests/tests/store/char32703trailingblanks.data",
View Full Code Here
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.