【发布时间】:2019-11-23 14:19:01
【问题描述】:
我有一个生成令牌的 Rest API。此会话令牌在多个 REST API 中用作授权持有者令牌。我以此为参考:https://github.com/cypress-io/cypress-example-recipes/blob/master/examples/logging-in__jwt/cypress/integration/spec.js
但是,在该示例中,生成令牌的函数嵌入在测试中。我试图创建一个应该在本地存储的自定义命令,但它没有被测试拾取。请注意,自定义命令中不包含返回值。
我在 support/commands.js 下的代码:
let identity
Cypress.Commands.add('postToken', () => {
cy.request({
method: 'POST',
url: Cypress.env('api_identity_url'), //get from cypress.env.json
form: true, //sets to application/x-www-form-urlencoded
body: {
grant_type: 'client_credentials',
scope: 'xero_all-apis'
},
auth: {
username: Cypress.env('api_identity_username'),
password: Cypress.env('api_identity_password')
}
})
.its('body')
.then((response) => {
identity = response
window.localStorage.setItem('identity', JSON.stringify(identity))
cy.log(identity.access_token)
})
})
我的测试:
context('Check token details', () => {
it('Check token', () => {
cy.postToken()
const bToken = window.localStorage.getItem('identity')
cy.log(bToken)
})
})
当我运行测试时,日志显示“身份”的 null 值。但是,它会在我放置cy.log(identity.access_token) 的自定义命令中显示当前值
我尝试使用 cy.writeFile 但我认为这不是一个干净的方法。必须有某种方式可以在函数和不同类之间传递数据。
示例 JSON 格式:
{
"token": "<this is the value I would like to use for other API's authorisation bearer token>",
"expires_in": 1200,
"token_type": "Bearer"
}
【问题讨论】:
标签: javascript rest api automation cypress