@@ -41,7 +41,7 @@ public void setup() {
41
41
wireMockServer = new WireMockServer (8080 );
42
42
wireMockServer .start ();
43
43
44
- // https://developers.amadeus.com/self-service/apis-docs/guides/authorization-262
44
+ // API at https://developers.amadeus.com/self-service/apis-docs/guides/authorization-262
45
45
String address = "/v1/security/oauth2/token"
46
46
+ "?grant_type=client_credentials&client_secret=DEMO&client_id=DEMO" ;
47
47
wireMockServer .stubFor (post (urlEqualTo (address ))
@@ -67,7 +67,7 @@ public void teardown() {
67
67
public void givenClientWhenCallFlightOffersWithParamsThenOK ()
68
68
throws ResponseException , IOException {
69
69
70
- //Given
70
+ // Given
71
71
String address = "/v2/shopping/flight-offers" ; //"/v1/shopping/flight-offers/pricing"; //
72
72
wireMockServer .stubFor (post (urlEqualTo (address ))
73
73
.willReturn (aResponse ().withHeader ("Content-Type" , "application/json" )
@@ -96,10 +96,10 @@ public void givenClientWhenCallFlightOffersWithParamsThenOK()
96
96
FlightPrice flightPricing = amadeus .shopping .flightOffersSearch .pricing .post (
97
97
flightOffersSearches [1 ]);
98
98
99
- //When
99
+ // When
100
100
FlightOrder result = amadeus .booking .flightOrders .post (flightPricing , travelerArray );
101
101
102
- //Then
102
+ // Then
103
103
assertNotNull (result );
104
104
}
105
105
@@ -138,7 +138,7 @@ private Traveler[] getTravelerData() {
138
138
public void givenClientWhenCallFlightOffersWithParamsAlternative2ThenOK ()
139
139
throws ResponseException , IOException {
140
140
141
- //Given
141
+ // Given
142
142
String address = "/v2/shopping/flight-offers" ; //"/v1/shopping/flight-offers/pricing"; //
143
143
wireMockServer .stubFor (post (urlEqualTo (address ))
144
144
.willReturn (aResponse ().withHeader ("Content-Type" , "application/json" )
@@ -157,18 +157,18 @@ public void givenClientWhenCallFlightOffersWithParamsAlternative2ThenOK()
157
157
158
158
FlightOfferSearch [] flightOffersSearches = amadeus .shopping .flightOffersSearch .post (request );
159
159
160
- //When
160
+ // When
161
161
FlightOrder result = amadeus .booking .flightOrders .post (flightOffersSearches , travellers );
162
162
163
- //Then
163
+ // Then
164
164
assertNotNull (result );
165
165
}
166
166
167
167
@ Test
168
168
public void givenClientWhenCallFlightOffersWithParamsAlternative3ThenOK ()
169
169
throws ResponseException , IOException {
170
170
171
- //Given
171
+ // Given
172
172
String address = "/v2/shopping/flight-offers" ; //"/v1/shopping/flight-offers/pricing"; //
173
173
wireMockServer .stubFor (post (urlEqualTo (address ))
174
174
.willReturn (aResponse ().withHeader ("Content-Type" , "application/json" )
@@ -187,18 +187,18 @@ public void givenClientWhenCallFlightOffersWithParamsAlternative3ThenOK()
187
187
188
188
FlightOfferSearch [] flightOffersSearches = amadeus .shopping .flightOffersSearch .post (request );
189
189
190
- //When
190
+ // When
191
191
FlightOrder result = amadeus .booking .flightOrders .post (flightOffersSearches [0 ], travellers );
192
192
193
- //Then
193
+ // Then
194
194
assertNotNull (result );
195
195
}
196
196
197
197
@ Test
198
198
public void givenClientWhenCallFlightOffersWithParamsAlternative4ThenOK ()
199
199
throws ResponseException , IOException {
200
200
201
- //Given
201
+ // Given
202
202
String address = "/v1/booking/flight-orders" ;
203
203
wireMockServer .stubFor (post (urlEqualTo (address ))
204
204
.willReturn (aResponse ().withHeader ("Content-Type" , "application/json" )
@@ -207,10 +207,10 @@ public void givenClientWhenCallFlightOffersWithParamsAlternative4ThenOK()
207
207
208
208
JsonObject request = getRequestFromResources ("flight_create_order_request.json" );
209
209
210
- //When
210
+ // When
211
211
FlightOrder result = amadeus .booking .flightOrders .post (request );
212
212
213
- //Then
213
+ // Then
214
214
assertNotNull (result );
215
215
}
216
216
0 commit comments