blob: 04c613be7e052448edc42c14541fda7ad3f5cb37 [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/TINKBinaryKeysetReader.h"
#import <XCTest/XCTest.h>
#import "objc/util/TINKStrings.h"
#import "proto/Tink.pbobjc.h"
#include "tink/util/test_util.h"
#include "proto/tink.pb.h"
static NSData *gBadSerializedKeyset;
static NSData *gGoodSerializedKeyset;
static NSData *gGoodSerializedEncryptedKeyset;
@interface TINKBinaryKeysetReaderTest : XCTestCase
@end
@implementation TINKBinaryKeysetReaderTest
+ (void)setUp {
google::crypto::tink::Keyset keyset;
google::crypto::tink::Keyset::Key key;
crypto::tink::test::AddTinkKey("some key type", 42, key,
google::crypto::tink::KeyStatusType::ENABLED,
google::crypto::tink::KeyData::SYMMETRIC, &keyset);
crypto::tink::test::AddRawKey("some other key type", 711, key,
google::crypto::tink::KeyStatusType::ENABLED,
google::crypto::tink::KeyData::SYMMETRIC, &keyset);
keyset.set_primary_key_id(42);
gGoodSerializedKeyset = TINKStringToNSData(keyset.SerializeAsString());
gBadSerializedKeyset = TINKStringToNSData("some weird string");
google::crypto::tink::EncryptedKeyset encrypted_keyset;
encrypted_keyset.set_encrypted_keyset("some ciphertext with keyset");
auto keyset_info = encrypted_keyset.mutable_keyset_info();
keyset_info->set_primary_key_id(42);
auto key_info = keyset_info->add_key_info();
key_info->set_type_url("some type_url");
key_info->set_key_id(42);
gGoodSerializedEncryptedKeyset = TINKStringToNSData(encrypted_keyset.SerializeAsString());
}
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wnonnull"
- (void)testReaderCreation {
// Serialized keyset is nil.
NSError *error = nil;
TINKBinaryKeysetReader *reader =
[[TINKBinaryKeysetReader alloc] initWithSerializedKeyset:nil error:&error];
XCTAssertNil(reader);
XCTAssertNotNil(error);
// Good serialized keyset.
error = nil;
reader =
[[TINKBinaryKeysetReader alloc] initWithSerializedKeyset:gGoodSerializedKeyset error:&error];
XCTAssertNotNil(reader);
XCTAssertNil(error);
// Bad serialized keyset.
error = nil;
reader =
[[TINKBinaryKeysetReader alloc] initWithSerializedKeyset:gBadSerializedKeyset error:&error];
XCTAssertNotNil(reader);
XCTAssertNil(error);
}
#pragma clang diagnostic pop
@end