@@ -96,6 +96,30 @@ describe("RequestInformation", () => {
96
96
assert . equal ( requestInformation . URL , "http://localhost/me?datasets=1,2" ) ;
97
97
} ) ;
98
98
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
+
99
123
it ( "Sets enum value in path parameters" , ( ) => {
100
124
const requestInformation = new RequestInformation ( ) ;
101
125
requestInformation . pathParameters [ "baseurl" ] = baseUrl ;
0 commit comments