This is an automated email from the ASF dual-hosted git repository.
rabbah pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk.git
The following commit(s) were added to refs/heads/master by this push:
new 833c0a9 Make package test resilient against eventual consistency.
(#3331)
833c0a9 is described below
commit 833c0a9c7df66ad0e34cb4cfc6e91dda199cc75d
Author: Markus Thömmes <[email protected]>
AuthorDate: Fri Feb 23 20:54:29 2018 +0100
Make package test resilient against eventual consistency. (#3331)
---
.../src/test/scala/whisk/core/controller/test/PackagesApiTests.scala | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git
a/tests/src/test/scala/whisk/core/controller/test/PackagesApiTests.scala
b/tests/src/test/scala/whisk/core/controller/test/PackagesApiTests.scala
index 9dbb8c2..c0e2e40 100644
--- a/tests/src/test/scala/whisk/core/controller/test/PackagesApiTests.scala
+++ b/tests/src/test/scala/whisk/core/controller/test/PackagesApiTests.scala
@@ -335,11 +335,14 @@ class PackagesApiTests extends ControllerTestCommon with
WhiskPackagesApi {
aname(),
jsDefault("??"),
annotations = Parameters(Parameters.Feed, "true"))
+
put(entityStore, provider)
put(entityStore, reference)
put(entityStore, action)
put(entityStore, feed)
+ waitOnView(entityStore, WhiskAction, provider.fullPath, 2)
+
// it should "reject get package reference from other subject" in {
val auser = WhiskAuthHelpers.newIdentity()
Get(s"/$namespace/${collection.path}/${reference.name}") ~>
Route.seal(routes(auser)) ~> check {
@@ -349,7 +352,7 @@ class PackagesApiTests extends ControllerTestCommon with
WhiskPackagesApi {
Get(s"$collectionPath/${reference.name}") ~> Route.seal(routes(creds)) ~>
check {
status should be(OK)
val response = responseAs[WhiskPackageWithActions]
- response should be(reference withActions (List(action, feed)))
+ response should be(reference withActions List(action, feed))
}
}
--
To stop receiving notification emails like this one, please contact
[email protected].