summaryrefslogtreecommitdiff
path: root/src/main/cpp/test/securegcm/d2d_connection_context_v1_test.cc
blob: daf69d153c5a5f3995dc5e6bccea946638b0570b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
// Copyright 2020 Google LLC
//
// 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
//
//     https://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.

#include "securegcm/d2d_connection_context_v1.h"

#include "securegcm/d2d_crypto_ops.h"
#include "gtest/gtest.h"

namespace securegcm {

using securemessage::CryptoOps;

namespace {

// The encode and decode keys should be 32 bytes.
const char kEncodeKeyData[] = "initiator_encode_key_for_aes_256";
const char kDecodeKeyData[] = "initiator_decode_key_for_aes_256";

}  // namespace

// A friend to access the private variables of D2DConnectionContextV1.
class D2DConnectionContextV1Peer {
 public:
  explicit D2DConnectionContextV1Peer(const std::string& savedSessionInfo) {
    context_ = D2DConnectionContextV1::FromSavedSession(savedSessionInfo);
  }

  D2DConnectionContextV1* GetContext() { return context_.get(); }

  uint32_t GetEncodeSequenceNumber() {
    return context_->encode_sequence_number_;
  }

  uint32_t GetDecodeSequenceNumber() {
    return context_->decode_sequence_number_;
  }

 private:
  std::unique_ptr<D2DConnectionContextV1> context_;
};

TEST(D2DConnectionContextionV1Test, SaveSession) {
  CryptoOps::SecretKey encodeKey = CryptoOps::SecretKey(
      kEncodeKeyData, CryptoOps::KeyAlgorithm::AES_256_KEY);
  CryptoOps::SecretKey decodeKey = CryptoOps::SecretKey(
      kDecodeKeyData, CryptoOps::KeyAlgorithm::AES_256_KEY);

  D2DConnectionContextV1 initiator =
      D2DConnectionContextV1(encodeKey, decodeKey, 0, 1);
  D2DConnectionContextV1 responder =
      D2DConnectionContextV1(decodeKey, encodeKey, 1, 0);

  std::unique_ptr<std::string> initiatorSavedSessionState =
      initiator.SaveSession();
  std::unique_ptr<std::string> responderSavedSessionState =
      responder.SaveSession();

  D2DConnectionContextV1Peer restoredInitiator =
      D2DConnectionContextV1Peer(*initiatorSavedSessionState);
  D2DConnectionContextV1Peer restoredResponder =
      D2DConnectionContextV1Peer(*responderSavedSessionState);

  // Verify internal state matches initialization.
  EXPECT_EQ(0, restoredInitiator.GetEncodeSequenceNumber());
  EXPECT_EQ(1, restoredInitiator.GetDecodeSequenceNumber());
  EXPECT_EQ(1, restoredResponder.GetEncodeSequenceNumber());
  EXPECT_EQ(0, restoredResponder.GetDecodeSequenceNumber());

  EXPECT_EQ(*restoredInitiator.GetContext()->GetSessionUnique(),
            *restoredResponder.GetContext()->GetSessionUnique());

  const std::string message = "ping";

  // Ensure that they can still talk to one another.
  std::string encodedMessage =
      *restoredInitiator.GetContext()->EncodeMessageToPeer(message);
  std::string decodedMessage =
      *restoredResponder.GetContext()->DecodeMessageFromPeer(encodedMessage);

  EXPECT_EQ(message, decodedMessage);

  encodedMessage =
      *restoredResponder.GetContext()->EncodeMessageToPeer(message);
  decodedMessage =
      *restoredInitiator.GetContext()->DecodeMessageFromPeer(encodedMessage);

  EXPECT_EQ(message, decodedMessage);
}

TEST(D2DConnectionContextionV1Test, SaveSession_TooShort) {
  CryptoOps::SecretKey encodeKey = CryptoOps::SecretKey(
      kEncodeKeyData, CryptoOps::KeyAlgorithm::AES_256_KEY);
  CryptoOps::SecretKey decodeKey = CryptoOps::SecretKey(
      kDecodeKeyData, CryptoOps::KeyAlgorithm::AES_256_KEY);

  D2DConnectionContextV1 initiator =
      D2DConnectionContextV1(encodeKey, decodeKey, 0, 1);

  std::unique_ptr<std::string> initiatorSavedSessionState =
      initiator.SaveSession();

  // Try to rebuild the context with a shorter session state.
  std::string shortSessionState = initiatorSavedSessionState->substr(
      0, initiatorSavedSessionState->size() - 1);

  D2DConnectionContextV1Peer restoredInitiator =
      D2DConnectionContextV1Peer(shortSessionState);

  // nullptr is returned on error. It should not crash.
  EXPECT_EQ(restoredInitiator.GetContext(), nullptr);
}

}  // namespace securegcm