Skip to content

Commit

Permalink
test(http): parse url with port
Browse files Browse the repository at this point in the history
  • Loading branch information
matteo-cristino authored and jaromil committed Oct 23, 2024
1 parent 14df205 commit 6a3acca
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions test/zencode/http.bats
Original file line number Diff line number Diff line change
Expand Up @@ -287,3 +287,22 @@ EOF
save_output 'append_different_values.json'
assert_output '{"another_url":"openid-credential-issuer://www.example.com?param1=value1&param2=1000&param3=2000&param4=3000","url":"openid-credential-issuer://www.example.com?param1=value1&param2=1000&param3=2000&param4=3000"}'
}

@test "url with port" {
cat <<EOF | save_asset url_with_port.data
{
"url_with_port": "http://127.0.0.1:8080/some/api"
}
EOF
cat <<EOF | zexe url_with_port.zen url_with_port.data
Scenario 'http': url with port
Given I have a 'string' named 'url_with_port'
When I create the url from 'url_with_port'
Then print the 'url'
EOF
save_output 'url_with_port.json'
assert_output '{"url":"http://127.0.0.1:8080/some/api"}'
}

0 comments on commit 6a3acca

Please sign in to comment.