org.wso2.appmanager.integration.test.cases.PublisherCreateWebAppTestCase.java Source code

Java tutorial

Introduction

Here is the source code for org.wso2.appmanager.integration.test.cases.PublisherCreateWebAppTestCase.java

Source

/*
*Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
*
*WSO2 Inc. 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.wso2.appmanager.integration.test.cases;

import org.json.JSONObject;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
import org.wso2.appmanager.integration.utils.APPMPublisherRestClient;
import org.wso2.appmanager.integration.utils.AppmTestConstants;
import org.wso2.appmanager.integration.utils.bean.AppCreateRequest;
import org.wso2.carbon.automation.engine.context.AutomationContext;
import org.wso2.carbon.automation.engine.context.TestUserMode;
import org.wso2.carbon.automation.engine.context.beans.User;
import org.wso2.carbon.automation.test.utils.http.client.HttpResponse;

import static org.testng.Assert.assertEquals;
import static org.testng.Assert.assertNotNull;
import static org.testng.Assert.assertTrue;

public class PublisherCreateWebAppTestCase {

    private static final String TEST_DESCRIPTION = "Verify Creating a Web App";
    private APPMPublisherRestClient appmPublisherRestClient;
    private String appName = "PublisherCreateWebAppTestCase";
    private String appVersion = "1.0.0";
    private String context = "/" + appName;
    private String trackingCode = "AM_" + appName;
    private String backEndUrl;
    private String appCreatorUserName;

    @BeforeClass(alwaysRun = true)
    public void startUp() throws Exception {
        AutomationContext appMServer = new AutomationContext(AppmTestConstants.APP_MANAGER,
                TestUserMode.SUPER_TENANT_ADMIN);
        backEndUrl = appMServer.getContextUrls().getWebAppURLHttps();
        appmPublisherRestClient = new APPMPublisherRestClient(backEndUrl);

        //User who has only app creating permission.
        User appCreator = appMServer.getSuperTenant().getTenantUser("AppCreator");
        appCreatorUserName = appCreator.getUserName();
        appmPublisherRestClient.login(appCreatorUserName, appCreator.getPassword());
    }

    @Test(description = TEST_DESCRIPTION)
    public void testPublisherCreateWebApp() throws Exception {
        HttpResponse appCreateResponse = appmPublisherRestClient.webAppCreate(appName, context, appVersion,
                trackingCode, appCreatorUserName);
        int appCreateResponseCode = appCreateResponse.getResponseCode();
        assertTrue(appCreateResponseCode == 200, appCreateResponseCode + " status code received.");
        JSONObject appCreateResponseData = new JSONObject(appCreateResponse.getData());
        assertEquals(appCreateResponseData.getString(AppmTestConstants.MESSAGE), "asset added",
                "Asset has not added successfully");
        assertNotNull(appCreateResponseData.getString(AppmTestConstants.ID), "app id is null");
    }

    @AfterClass(alwaysRun = true)
    public void closeDown() throws Exception {
        appmPublisherRestClient.logout();
    }
}