-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable Web Secure token for sequences on API create (#1087)
* Enable Web Secure token for sequences on API create * Enable Web Secure token for sequences on API create * Fix non-working code that attempted to add web annotations * refine procedural logic for reuse * refine procedural logic for reuse * refine procedural logic for reuse * refine procedural logic for reuse * refine procedural logic for reuse
- Loading branch information
Showing
16 changed files
with
326 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
53 changes: 53 additions & 0 deletions
53
...s/src/integration/webaction/manifest_missing_web_annotation_on_api_action_or_sequence.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# | ||
# 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. | ||
# | ||
|
||
# TODO automate this testcase | ||
# Test automatically adding web annotations on Actions that do not have them declared | ||
# when these actions are used to create APIs. | ||
# 1) Test an Action missing web-export, but with existing Annotations declared | ||
# 2) Test a Sequence missing web-export with NO existing Annotations (to verify we allocate) | ||
# 3) Test if web-action is set to false that we error out as we cannot override explicit value | ||
packages: | ||
TestMissingWebAnnotation: | ||
actions: | ||
hello_validate: | ||
function: src/hello_http_validate.js | ||
hello: | ||
function: src/hello.js | ||
annotations: | ||
foo: bar | ||
hello_wrap: | ||
function: src/hello_http_wrap.js | ||
helloWebFalse: | ||
function: src/hello.js | ||
web: false | ||
sequences: | ||
hellosequence: | ||
actions: hello_validate, hello, hello_wrap | ||
apis: | ||
actionmissingweb: | ||
helloworlds: | ||
helloweb: | ||
hello: | ||
method: GET | ||
response: http | ||
hellosequence: | ||
method: GET | ||
response: http | ||
helloWebFalse: | ||
method: GET | ||
response: http |
41 changes: 41 additions & 0 deletions
41
tests/src/integration/webaction/manifest_require_whisk_auth_sequence_valid.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# | ||
# 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. | ||
# | ||
|
||
packages: | ||
hellosequencespkg: | ||
version: 1.0 | ||
license: Apache-2.0 | ||
actions: | ||
hello_validate: | ||
function: src/hello_http_validate.js | ||
hello: | ||
function: src/hello.js | ||
hello_wrap: | ||
function: src/hello_http_wrap.js | ||
sequences: | ||
hellosequence: | ||
actions: hello_validate, hello, hello_wrap | ||
web: true | ||
annotations: | ||
require-whisk-auth: "mytoken" | ||
apis: | ||
web-secure-sequences: | ||
helloworlds: | ||
hellosequence: | ||
hellosequence: | ||
method: GET | ||
response: http |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
/* | ||
* Hello, world | ||
*/ | ||
function main(params) { | ||
msg = "Hello, " + params.name + " from " + params.place; | ||
return { greeting: msg }; | ||
} |
36 changes: 36 additions & 0 deletions
36
tests/src/integration/webaction/src/hello_http_validate.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
/* | ||
* This action validates the parameters passed to the hello world action and | ||
* returns an error if any of them is missing. | ||
*/ | ||
function main(params) { | ||
if(params.name && params.place) { | ||
return params; | ||
} else { | ||
return { | ||
error: { | ||
body: { | ||
message: 'Attributes name and place are mandatory' | ||
}, | ||
statusCode: 400, | ||
headers: {'Content-Type': 'application/json'} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
/* | ||
* This action take a result from the previous action and wraps it into a | ||
* HTTP response structure. | ||
*/ | ||
function main(params) { | ||
return { | ||
body: params, | ||
statusCode: 200, | ||
headers: {'Content-Type': 'application/json'} | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.