Examples of SupportFilesSetup


Examples of org.apache.derbyTesting.junit.SupportFilesSetup

        // For testing subprotocols. Cleanup of support files is blocked by DERBY-5618.
        //
        if ( !onWindows() )
        {
            // Add the jar files needed for testing jar and classpath subprotocols.
            result = new SupportFilesSetup( result, SUPPORT_FILES_SOURCE, null, SUPPORT_FILES_TARGET, null );

            //
            // Add a jar file to the classpath so that we can test the classpath subprotocol.
            //
            File        currentDirectory = currentDirectory();
View Full Code Here

Examples of org.apache.derbyTesting.junit.SupportFilesSetup

        //test uses triggers and procedures that use DriverManager.
        BaseTestSuite suite = new BaseTestSuite(
            GrantRevokeDDLTest.class, "GrantRevokeDDL Test");

      Test test = new SupportFilesSetup(suite);
      test = new CleanDatabaseTestSetup(test);
      test = DatabasePropertyTestSetup.builtinAuthentication(
        test, users, "grantrevokeddl");
        test = TestConfiguration.sqlAuthorizationDecorator(test);
       
View Full Code Here

Examples of org.apache.derbyTesting.junit.SupportFilesSetup

    {
        if (JDBC.vmSupportsJSR169())
            return new TestSuite("GrantRevokeDDLTest"); // return empty suite;
                //test uses triggers and procedures that use DriverManager.
        TestSuite suite = new TestSuite(GrantRevokeDDLTest.class, "GrantRevokeDDL Test");
      Test test = new SupportFilesSetup(suite);
      test = new CleanDatabaseTestSetup(test);
      test = DatabasePropertyTestSetup.builtinAuthentication(
        test, users, "grantrevokeddl");
        test = TestConfiguration.sqlAuthorizationDecorator(test);
       
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

     *
     * @return A test suite.
     */
    public static Test suite() {
        BaseTestSuite suite = new BaseTestSuite(BackupRestoreTest.class);
        return new SupportFilesSetup(
                TestConfiguration.singleUseDatabaseDecorator(suite));
    }
View Full Code Here

Examples of org.apache.derbyTesting.junit.SupportFilesSetup

                setupTables(s, biggestSize, bigSize);
            }
        };
        suite = new SystemPropertyTestSetup(suite,sysprops);

        return new SupportFilesSetup(suite);
    }
View Full Code Here

Examples of org.apache.derbyTesting.junit.SupportFilesSetup

    }

    protected static Test baseSuite(String name) {
        BaseTestSuite suite = new BaseTestSuite(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

Examples of org.apache.derbyTesting.junit.SupportFilesSetup

    public static Test suite() {
        // This test runs only in embedded due to the use of external files.
        BaseTestSuite suite = new BaseTestSuite(EncryptionKeyAESTest.class,
                                        "EncryptionKey AES suite");
        return new SupportFilesSetup(suite);
    }
View Full Code Here

Examples of org.apache.derbyTesting.junit.SupportFilesSetup

        // Install a security policy and copy the required include files.
        final String resourcePath = "functionTests/tests/derbynet";
        return new SecurityManagerSetup(
                TestConfiguration.clientServerDecorator(
                    new SupportFilesSetup(suite, new String[] {
                        resourcePath + "/connect.inc",
                        resourcePath + "/excsat_accsecrd1.inc",
                        resourcePath + "/excsat_accsecrd2.inc",
                        resourcePath + "/excsat_accsecrd_nordb.inc",
                        resourcePath + "/excsat_secchk_nordbonaccsec.inc",
View Full Code Here

Examples of org.apache.derbyTesting.junit.SupportFilesSetup

     */
    public static Test suite(int phase) {
        BaseTestSuite suite = new BaseTestSuite("Upgrade test for 10.6");

        suite.addTestSuite(Changes10_6.class);
        return new SupportFilesSetup((Test) suite);
    }
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.