xref: /aosp_15_r20/external/tink/cc/config/config_util_test.cc (revision e7b1675dde1b92d52ec075b0a92829627f2c52a5)
1 // Copyright 2019 Google LLC
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 //      http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 //
15 ////////////////////////////////////////////////////////////////////////////////
16 
17 #include "tink/config/config_util.h"
18 
19 #include "gmock/gmock.h"
20 #include "gtest/gtest.h"
21 
22 using ::testing::Eq;
23 
24 namespace crypto {
25 namespace tink {
26 
TEST(CreateKeyTypeEntry,Simple)27 TEST(CreateKeyTypeEntry, Simple) {
28   google::crypto::tink::KeyTypeEntry entry = CreateTinkKeyTypeEntry(
29       "catalogue", "primitive_name", "key_proto_name", 12, true);
30   EXPECT_THAT(entry.primitive_name(), Eq("primitive_name"));
31   EXPECT_THAT(entry.type_url(),
32               Eq("type.googleapis.com/google.crypto.tink.key_proto_name"));
33   EXPECT_THAT(entry.key_manager_version(), Eq(12));
34   EXPECT_THAT(entry.new_key_allowed(), Eq(true));
35   EXPECT_THAT(entry.catalogue_name(), Eq("catalogue"));
36 }
37 
38 }  // namespace tink
39 }  // namespace crypto
40