apache / openwhisk-catalog

Curated catalog of Apache OpenWhisk packages to interface with event producers and consumers
https://openwhisk.apache.org/
Apache License 2.0
33 stars 49 forks source link

Replace the binary Wsk with REST interface WskRest #247

Closed houshengbo closed 3 years ago

houshengbo commented 6 years ago

All the non-CLI related tests should sunset the wsk, and re-implement them with wskrest.

import common.wsk 
val wsk = new Wsk

need to be changed to

import common.rest.WskRest
val wsk = new WskRest

plus there may be changes to the rest of the tests as well, since the response result may have been changed.

houshengbo commented 6 years ago

There are 10 test cases: CombinatorTests CurlTest.scala
GreetingTest.scala
HelloTests.scala
WordCountTest.scala SlackTests UtilsTests WatsonTests WeatherTests WebSocketTests.scala

dgrove-oss commented 3 years ago

Closing as won't do.