| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- /*
- * Copyright 2017 Google
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #import <XCTest/XCTest.h>
- #import "FIRAuthBackend.h"
- #import "FIRGetProjectConfigRequest.h"
- #import "FIRGetProjectConfigResponse.h"
- #import "FIRFakeBackendRPCIssuer.h"
- /** @var kGetProjectConfigEndPoint
- @brief The "getProjectConfig" endpoint.
- */
- static NSString *const kGetProjectConfigEndPoint = @"getProjectConfig";
- /** @var kTestAPIKey
- @brief Fake API key used for testing.
- */
- static NSString *const kTestAPIKey = @"APIKey";
- /** @var kAPIURLFormat
- @brief URL format for server API calls.
- */
- static NSString *const kAPIURLFormat = @"https://%@/identitytoolkit/v3/relyingparty/%@?key=%@";
- /** @var gAPIHost
- @brief Host for server API calls.
- */
- static NSString *gAPIHost = @"www.googleapis.com";
- @interface FIRGetProjectConfigRequestTests : XCTestCase
- @end
- @implementation FIRGetProjectConfigRequestTests {
- /** @var _RPCIssuer
- @brief This backend RPC issuer is used to fake network responses for each test in the suite.
- In the @c setUp method we initialize this and set @c FIRAuthBackend's RPC issuer to it.
- */
- FIRFakeBackendRPCIssuer *_RPCIssuer;
- }
- - (void)setUp {
- [super setUp];
- FIRFakeBackendRPCIssuer *RPCIssuer = [[FIRFakeBackendRPCIssuer alloc] init];
- [FIRAuthBackend setDefaultBackendImplementationWithRPCIssuer:RPCIssuer];
- _RPCIssuer = RPCIssuer;
- }
- - (void)tearDown {
- _RPCIssuer = nil;
- [FIRAuthBackend setDefaultBackendImplementationWithRPCIssuer:nil];
- [super tearDown];
- }
- /** @fn testGetProjectConfigRequest
- @brief Tests get project config request.
- */
- - (void)testGetProjectConfigRequest {
- FIRAuthRequestConfiguration *requestConfiguration =
- [[FIRAuthRequestConfiguration alloc] initWithAPIKey:kTestAPIKey];
- FIRGetProjectConfigRequest *request =
- [[FIRGetProjectConfigRequest alloc] initWithRequestConfiguration:requestConfiguration];
- [FIRAuthBackend getProjectConfig:request
- callback:^(FIRGetProjectConfigResponse *_Nullable response,
- NSError *_Nullable error) {
- }];
- XCTAssertFalse([request containsPostBody]);
- // Confirm that the quest has no decoded body as it is get request.
- XCTAssertNil(_RPCIssuer.decodedRequest);
- NSString *URLString = [NSString stringWithFormat:kAPIURLFormat,
- gAPIHost,
- kGetProjectConfigEndPoint,
- kTestAPIKey];
- XCTAssertEqualObjects(URLString, [request requestURL].absoluteString);
- }
- @end
|