Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: minor errors in SecureStorage.feature #314

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions cypress/TestCases/FireboltCertification/SecureStorage.feature
Original file line number Diff line number Diff line change
Expand Up @@ -342,13 +342,13 @@ Feature: SecureStorage
And '3rd party app' invokes the 'Firebolt' API to 'set secure value for key authTestTokenDevice1'
And 'Firebolt' platform responds with 'null for updating a secure data value'
And '3rd party app' invokes the 'Firebolt' API to 'get stored value for authTestTokenDevice1 with scope device'
And 'Firebolt' platform responds with ' expected value for authTestTokenDevice1 stored data in securestorage'
And 'Firebolt' platform responds with 'expected value for authTestTokenDevice1 stored data in securestorage'
And '3rd party app' invokes the 'Firebolt' API to 'set secure value for key authTestTokenDevice2'
And 'Firebolt' platform responds with 'null for updating a secure data value'
And '3rd party app' invokes the 'Firebolt' API to 'get stored value for authTestTokenDevice2 with scope device'
And 'Firebolt' platform responds with 'expected value for authTestTokenDevice2 stored data in securestorage'
And 'secondary 3rd party app' invokes the 'Firebolt' API to 'get stored value for authTestTokenDevice1 with scope device'
And 'Firebolt' platform responds to 'secondary 3rd party app' with ' expected value for authTestTokenDevice1 stored data in securestorage'
And 'Firebolt' platform responds to 'secondary 3rd party app' with 'expected value for authTestTokenDevice1 stored data in securestorage'
And 'secondary 3rd party app' invokes the 'Firebolt' API to 'get stored value for authTestTokenDevice2 with scope device'
And 'Firebolt' platform responds to 'secondary 3rd party app' with 'expected value for authTestTokenDevice2 stored data in securestorage'
When '3rd party app' invokes the 'Firebolt' API to 'remove the stored value authTestTokenDevice1 with scope device'
Expand All @@ -360,7 +360,7 @@ Feature: SecureStorage
When '3rd party app' invokes the 'Firebolt' API to 'get stored value for authTestTokenDevice2 with scope device'
Then 'Firebolt' platform responds with 'expected value for authTestTokenDevice2 stored data in securestorage'
When 'secondary 3rd party app' invokes the 'Firebolt' API to 'get stored value for authTestTokenDevice2 with scope device'
Then 'Firebolt' platform responds to 'secondary 3rd party app' with '<expected value for authTestTokenDevice2 stored data in securestorage'
Then 'Firebolt' platform responds to 'secondary 3rd party app' with 'expected value for authTestTokenDevice2 stored data in securestorage'

# 2nd app is launched
# set value1 in device scope
Expand Down
Loading