Skip to content
Merged
Show file tree
Hide file tree
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
16 changes: 16 additions & 0 deletions .requests/http-client.env.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"Lokal": {
"baseUrl": "http://localhost:8080",
"user": {
"email": "1-test@dancier.net",
"password": "CHANGEME"
}
},
"Test (test.dancier.net)": {
"baseUrl": "https://test-dancer.dancier.net",
"user": {
"email": "1-test@dancier.net",
"password": "CHANGEME"
}
}
}
47 changes: 47 additions & 0 deletions .requests/profile.http
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
### Login (run once to retrieve access token)
POST {{baseUrl}}/authentication/login
Content-Type: application/json

{
"email": "{{user.email}}",
"password": "{{user.password}}"
}
> {% client.global.set("access_token", response.body.accessToken); %}


### Get user's proile (and save it)
GET {{baseUrl}}/profile
Authorization: Bearer {{access_token}}

> {% client.global.set("profile", response.body.toString()); %}


### Save user's profile
PUT {{baseUrl}}/profile
Content-Type: application/json

{
"size": 130,
"gender": "FEMALE",
"birthDate": "1996-01-19",
"ableTo": [
{
"dance": "Tango",
"level": "BASIC",
"leading": "LEAD"
}
],
"wantsTo": [
{
"dance": "Tango",
"level": "INTERMEDIATE",
"leading": "FOLLOW"
}
],
"email": "1-test@dancier.net",
"zipCode": "10001",
"city": "Hamburg",
"country": "GER",
"profileImageHash": "1a7efd460ee0be68011291c9f6b1ac5d9b03f9974b66c27b14e59887bf910f8c",
"aboutMe": null
}
35 changes: 35 additions & 0 deletions .requests/register.http
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
### Perform Captcha to Login as Human
POST {{baseUrl}}/authentication/loginAsHuman
X-Captcha-Token: token

> {% client.global.set("access_token", response.body.accessToken); %}

### Perform initial registration
POST {{baseUrl}}/authentication/registrations
Content-Type: application/json

{
"acceptTermsAndConditions": true,
"email": "{{user.email}}",
"password": "{{user.password}}"

}

### verify email
PUT {{baseUrl}}/authentication/email-validations/asdf
Authorization: Bearer {{access_token}}

### Login with new user
POST {{baseUrl}}/authentication/login
Content-Type: application/json

{

}

> {% client.global.set("access_token", response.body.accessToken); %}


### Get user's profile
GET {{baseUrl}}/profile
Authorization: Bearer {{access_token}}
Loading