示例#1
0
func TestNewAppCreation(t *testing.T) {
	t.Log("Testing creation of AppCreation object")
	url := urls.GetUrls()
	appCreation := command.NewAppCreation(url.CreateApp)

	if(appCreation.Url != url.CreateApp) {
		t.Errorf("Expected '%s', but it was '%s' instead.", url.CreateApp, appCreation.Url)
	}
}
示例#2
0
func TestMetadata(t *testing.T){
	t.Log("Testing metadata")
	url := urls.GetUrls()
	appCreation := command.NewAppCreation(url.CreateApp)
	metadata := appCreation.Metadata()

	if(metadata.Name != "createNewApplication") {
		t.Errorf("Expected 'createNewApplication', but it was '%s' instead.", metadata.Name)
	}
}
示例#3
0
func TestRun(t *testing.T){
	t.Log("Testing metadata")
	url := urls.GetUrls()
	appCreation := command.NewAppCreation(url.CreateApp)

	configs := command.CommandConfigs{
		Url : "https://apps.cloud.wso2.com/appmgt/site/blocks/application/add/ajax/add.jag",
		Query : "action=createNewApplication&userName=dilhasha.uom.gmail.com@uomcse&applicationKey=de&applicationName=De&applicationDescription=sh&applicationType=war&repositoryType=git",
		Cookie : "JSESSIONID=11450C5F38F9F167D55FF2F268436068",
	}

	success,cookie := appCreation.Run(configs)

	if(cookie != configs.Cookie) {
		t.Errorf("Expected '%s', but it was '%s' instead.", configs.Cookie , cookie)
	}
	if(success == false){
		t.Errorf("Run command failed for appCreation. Check cookie and whether app already exists.")
	}
}