Examples of QuickstartAssert


Examples of com.openshift.client.utils.QuickstartAssert

    // operation
    IQuickstart wilfly8Quickstart = QuickstartTestUtils.getByName(QuickstartTestUtils.WILDFLY_8,
        connection.getQuickstarts());

    // verification
    new QuickstartAssert(wilfly8Quickstart)
        .hasId("16766")
        .hasHref("https://www.openshift.com/quickstarts/wildfly-8")
        .hasName(QuickstartTestUtils.WILDFLY_8)
        .hasSummary("WildFly is a flexible, lightweight, managed application runtime "
            + "that helps you build amazing applications.\n\nThis cartridge provides WIldFly 8.0.0.Final")
View Full Code Here

Examples of com.openshift.client.utils.QuickstartAssert

    // operation
    IQuickstart djangoQuickstart = QuickstartTestUtils.getByName(QuickstartTestUtils.DJANGO,
        connection.getQuickstarts());

    // verification
    new QuickstartAssert(djangoQuickstart)
        .hasId("12730")
        .hasHref("https://www.openshift.com/quickstarts/django")
        .hasName(QuickstartTestUtils.DJANGO)
        .hasSummary("A high-level Python web framework that encourages rapid development and clean, "
            + "pragmatic design.\n\nDuring application creation the Django admin username and password"
View Full Code Here

Examples of com.openshift.client.utils.QuickstartAssert

    // operation
    IQuickstart drupalQuickstart = QuickstartTestUtils.getByName(QuickstartTestUtils.DRUPAL_8,
        connection.getQuickstarts());

    // verification
    new QuickstartAssert(drupalQuickstart)
        .hasId("14942")
        .hasHref("https://www.openshift.com/quickstarts/drupal-8")
        .hasName(QuickstartTestUtils.DRUPAL_8)
        .hasSummary(
            "Try out the latest alpha releases of Drupal 8 on OpenShift. "
View Full Code Here

Examples of com.openshift.client.utils.QuickstartAssert

    // operation
    IQuickstart aeroGarPushQuickstart = QuickstartTestUtils.getByName(QuickstartTestUtils.AEROGEAR_PUSH_0X,
        connection.getQuickstarts());

    // verification
    new QuickstartAssert(aeroGarPushQuickstart)
        .hasId("15549")
        .hasHref("https://www.openshift.com/quickstarts/aerogear-push-0x")
        .hasName(QuickstartTestUtils.AEROGEAR_PUSH_0X)
        .hasSummary(
            "The AeroGear UnifiedPush Server allows for sending native push messages to different mobile operation systems. "
View Full Code Here

Examples of com.openshift.client.utils.QuickstartAssert

    // operation
    IQuickstart cactiQuickstart = QuickstartTestUtils.getByName(QuickstartTestUtils.CACTI,
        connection.getQuickstarts());

    // verification
    new QuickstartAssert(cactiQuickstart)
        // expression := [
        // {"name":"php-5.3"},
        // {"name":"mysql-5.1"},
        // {"name":"cron-1.4"}
        // ]
View Full Code Here

Examples of com.openshift.client.utils.QuickstartAssert

    // operation
    IQuickstart cactiQuickstart = QuickstartTestUtils.getByName(QuickstartTestUtils.CACTI,
        connection.getQuickstarts());

    // verification
    new QuickstartAssert(cactiQuickstart)
        // expression := [
        // {"name":"php-5.3"},
        // {"name":"mysql-5.1"},
        // {"name":"cron-1.4"}]
        .hasCartridgeNames(
View Full Code Here

Examples of com.openshift.client.utils.QuickstartAssert

    // operation
    IQuickstart cactiQuickstart = QuickstartTestUtils.getByName(QuickstartTestUtils.JBOSS_FUSE_61,
        connection.getQuickstarts());

    // verification
    new QuickstartAssert(cactiQuickstart)
        // expression := https://bit.ly/1fYSzhk
        .hasCartridges(
        Collections.<ICartridge> singletonList(new BaseCartridge(new URL("https://bit.ly/1fYSzhk"))));
  }
View Full Code Here

Examples of com.openshift.client.utils.QuickstartAssert

    // operation
    IQuickstart laravelQuickstart =
        QuickstartTestUtils.getByName(QuickstartTestUtils.LARAVEL_41, connection.getQuickstarts());

    // verification
    new QuickstartAssert(laravelQuickstart)
        .hasInitialGitUrl("https://github.com/muffycompo/openshift-laravel4-quickstart-app.git")
        // expression := "php-5.3|php-5.4, mysql-5.5",
        .hasCartridgeNames(
            Arrays.<String> asList(CartridgeTestUtils.PHP_53_NAME),
            // mysql-5.5 is not present in get-cartridges.json
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.