Skip to content

Commit 4137905

Browse files
authored
Merge pull request #1364 from tobiaswatzek/1357-path-parameters
Allow falsy values as path parameters in URL
2 parents d45aec9 + 086486e commit 4137905

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

packages/abstractions/src/requestInformation.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export class RequestInformation implements RequestInformationSetContent {
6868
}
6969
}
7070
for (const key in this.pathParameters) {
71-
if (this.pathParameters[key]) {
71+
if (this.pathParameters[key] !== null && this.pathParameters[key] !== undefined) {
7272
data[key] = this.normalizeValue(this.pathParameters[key]);
7373
}
7474
}

packages/abstractions/test/common/requestInformation.ts

+24
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,30 @@ describe("RequestInformation", () => {
9696
assert.equal(requestInformation.URL, "http://localhost/me?datasets=1,2");
9797
});
9898

99+
it.each([
100+
{ someNumber: -1, expected: "http://localhost/-1" },
101+
{ someNumber: 0, expected: "http://localhost/0" },
102+
{ someNumber: 1, expected: "http://localhost/1" },
103+
{ someNumber: NaN, expected: "http://localhost/NaN" },
104+
])("Sets number $someNumber in path parameters", () => {
105+
const requestInformation = new RequestInformation();
106+
requestInformation.pathParameters["baseurl"] = baseUrl;
107+
requestInformation.pathParameters["someNumber"] = 0;
108+
requestInformation.urlTemplate = "http://localhost/{someNumber}";
109+
assert.equal(requestInformation.URL, "http://localhost/0");
110+
});
111+
112+
it.each([
113+
{ someBoolean: true, expected: "http://localhost/true" },
114+
{ someBoolean: false, expected: "http://localhost/false" },
115+
])("Sets false in path parameters", () => {
116+
const requestInformation = new RequestInformation();
117+
requestInformation.pathParameters["baseurl"] = baseUrl;
118+
requestInformation.pathParameters["someBoolean"] = false;
119+
requestInformation.urlTemplate = "http://localhost/{someBoolean}";
120+
assert.equal(requestInformation.URL, "http://localhost/false");
121+
});
122+
99123
it("Sets enum value in path parameters", () => {
100124
const requestInformation = new RequestInformation();
101125
requestInformation.pathParameters["baseurl"] = baseUrl;

0 commit comments

Comments
 (0)