blob: 6b39c5a7cd6e6e9f8b77b28d6837618e680701ac [file] [log] [blame]
/**
* Copyright 2017 Google Inc.
*
* 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 "objc/TINKMacConfig.h"
#import <XCTest/XCTest.h>
#import "objc/TINKConfig.h"
#import "objc/TINKRegistryConfig.h"
#import "objc/core/TINKRegistryConfig_Internal.h"
#include "tink/mac/mac_config.h"
#include "proto/config.pb.h"
@interface TINKMacConfigTest : XCTestCase
@end
@implementation TINKMacConfigTest
- (void)testConfigContents {
std::string hmac_key_type = "type.googleapis.com/google.crypto.tink.HmacKey";
NSError *error = nil;
TINKMacConfig *macConfig = [[TINKMacConfig alloc] initWithError:&error];
XCTAssertNotNil(macConfig);
XCTAssertNil(error);
google::crypto::tink::RegistryConfig config = macConfig.ccConfig;
XCTAssertTrue(config.entry_size() == 1);
XCTAssertEqual("TinkMac", config.entry(0).catalogue_name());
XCTAssertEqual("Mac", config.entry(0).primitive_name());
XCTAssertEqual(hmac_key_type, config.entry(0).type_url());
XCTAssertTrue(config.entry(0).new_key_allowed());
XCTAssertEqual(config.entry(0).key_manager_version(), 0);
// Registration of standard key types works.
error = nil;
XCTAssertTrue([TINKConfig registerConfig:macConfig error:&error]);
XCTAssertNil(error);
}
@end