2016-12-17 00:21:28 +08:00
|
|
|
module IntegrationHelpers
|
2017-08-31 12:06:56 +08:00
|
|
|
def create_user
|
|
|
|
get "/u/hp.json"
|
|
|
|
|
2018-06-07 16:11:09 +08:00
|
|
|
expect(response.status).to eq(200)
|
2017-08-31 12:06:56 +08:00
|
|
|
|
|
|
|
body = JSON.parse(response.body)
|
|
|
|
honeypot = body["value"]
|
|
|
|
challenge = body["challenge"]
|
|
|
|
user = Fabricate.build(:user)
|
|
|
|
|
|
|
|
post "/u.json", params: {
|
|
|
|
username: user.username,
|
|
|
|
email: user.email,
|
|
|
|
password: 'asdasljdhaiosdjioaeiow',
|
|
|
|
password_confirmation: honeypot,
|
|
|
|
challenge: challenge.reverse
|
|
|
|
}
|
|
|
|
|
2018-06-07 16:11:09 +08:00
|
|
|
expect(response.status).to eq(200)
|
2017-08-31 12:06:56 +08:00
|
|
|
|
|
|
|
body = JSON.parse(response.body)
|
|
|
|
User.find(body["user_id"])
|
|
|
|
end
|
|
|
|
|
2016-12-17 00:21:28 +08:00
|
|
|
def sign_in(user)
|
2018-03-28 11:31:43 +08:00
|
|
|
get "/session/#{user.username}/become"
|
2017-12-14 10:53:21 +08:00
|
|
|
user
|
2016-12-17 00:21:28 +08:00
|
|
|
end
|
|
|
|
end
|