Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
atlas
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dataplatform
atlas
Commits
0c3c5f40
Commit
0c3c5f40
authored
May 14, 2015
by
arpitgupta
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more changes
parent
b4b8079d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
64 additions
and
3 deletions
+64
-3
RequestKeys.java
...java/org/apache/atlas/regression/request/RequestKeys.java
+1
-0
AdminResourceTest.java
.../org/apache/atlas/regression/tests/AdminResourceTest.java
+14
-3
TestUtils.java
...test/java/org/apache/atlas/regression/util/TestUtils.java
+49
-0
No files found.
regression/src/test/java/org/apache/atlas/regression/request/RequestKeys.java
View file @
0c3c5f40
...
...
@@ -24,6 +24,7 @@ public class RequestKeys {
public
static
final
String
CONTENT_TYPE_HEADER
=
"Content-Type"
;
public
static
final
String
JSON_CONTENT_TYPE
=
"application/json"
;
public
static
final
String
TEXT_CONTENT_TYPE
=
"text/plain"
;
public
static
final
String
AUTH_COOKIE
=
"hadoop.auth"
;
public
static
final
String
AUTH_COOKIE_EQ
=
AUTH_COOKIE
+
"="
;
...
...
regression/src/test/java/org/apache/atlas/regression/tests/AdminResourceTest.java
View file @
0c3c5f40
...
...
@@ -20,6 +20,8 @@ package org.apache.atlas.regression.tests;
import
com.jayway.jsonpath.Configuration
;
import
com.jayway.jsonpath.JsonPath
;
import
org.apache.atlas.regression.request.BaseRequest
;
import
org.apache.atlas.regression.request.RequestKeys
;
import
org.apache.atlas.regression.util.TestUtils
;
import
org.apache.http.HttpResponse
;
import
org.apache.http.util.EntityUtils
;
import
org.apache.log4j.Logger
;
...
...
@@ -37,8 +39,6 @@ public class AdminResourceTest extends BaseTest {
throws
Exception
{
BaseRequest
req
=
new
BaseRequest
(
baseReqUrl
+
"/version"
);
HttpResponse
response
=
req
.
run
();
softassert
.
assertEquals
(
200
,
response
.
getStatusLine
().
getStatusCode
(),
"Status code "
+
"mismatch"
);
String
json
=
EntityUtils
.
toString
(
response
.
getEntity
());
Object
document
=
Configuration
.
defaultConfiguration
().
jsonProvider
().
parse
(
json
);
String
version
=
JsonPath
.
read
(
document
,
"$.Version"
);
...
...
@@ -46,10 +46,20 @@ public class AdminResourceTest extends BaseTest {
String
description
=
JsonPath
.
read
(
document
,
"$.Description"
);
softassert
.
assertTrue
(
null
!=
version
&&
!
version
.
isEmpty
(),
"Version is empty"
);
softassert
.
assertEquals
(
name
,
"metadata-governance"
,
"Name does not match"
);
softassert
.
assertEquals
(
name
,
"metadata-governance"
,
"Name does not match"
);
softassert
.
assertEquals
(
description
,
"Metadata Management and Data Governance Platform over "
+
"Hadoop"
,
"Description does not match"
);
TestUtils
.
assert200
(
softassert
,
RequestKeys
.
JSON_CONTENT_TYPE
,
response
);
softassert
.
assertAll
();
}
@Test
public
void
testStack
()
throws
Exception
{
BaseRequest
req
=
new
BaseRequest
(
baseReqUrl
+
"/stack"
);
HttpResponse
response
=
req
.
run
();
TestUtils
.
assert200
(
softassert
,
RequestKeys
.
TEXT_CONTENT_TYPE
,
response
);
softassert
.
assertNotNull
(
EntityUtils
.
toString
(
response
.
getEntity
()),
"Content is not null"
);
softassert
.
assertAll
();
}
}
\ No newline at end of file
regression/src/test/java/org/apache/atlas/regression/util/TestUtils.java
0 → 100644
View file @
0c3c5f40
/*
* *
* * Licensed to the Apache Software Foundation (ASF) under one
* * or more contributor license agreements. See the NOTICE file
* * distributed with this work for additional information
* * regarding copyright ownership. The ASF 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
.
apache
.
atlas
.
regression
.
util
;
import
org.apache.atlas.regression.request.RequestKeys
;
import
org.apache.http.Header
;
import
org.apache.http.HttpResponse
;
import
org.apache.http.StatusLine
;
import
org.testng.asserts.SoftAssert
;
public
class
TestUtils
{
public
static
void
assertResponse
(
SoftAssert
softAssert
,
int
expCode
,
String
expMsg
,
String
contentType
,
HttpResponse
response
)
{
StatusLine
statusLine
=
response
.
getStatusLine
();
softAssert
.
assertEquals
(
statusLine
.
getStatusCode
(),
expCode
,
"Status code mismatch"
);
softAssert
.
assertEquals
(
statusLine
.
getReasonPhrase
(),
expMsg
,
"Status Message mismatch"
);
softAssert
.
assertEquals
(
getContentType
(
response
),
contentType
,
"Content Type Mismatch"
);
}
public
static
String
getContentType
(
HttpResponse
response
)
{
for
(
Header
header
:
response
.
getHeaders
(
RequestKeys
.
CONTENT_TYPE_HEADER
)){
return
header
.
getValue
();
}
return
null
;
}
public
static
void
assert200
(
SoftAssert
softAssert
,
String
contentType
,
HttpResponse
response
)
{
assertResponse
(
softAssert
,
200
,
"OK"
,
contentType
,
response
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment