| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2015 The WebRTC Project Authors. All rights reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 #include <memory> | 11 #include <memory> |
| 12 #include <utility> | 12 #include <utility> |
| 13 | 13 |
| 14 #include "webrtc/base/checks.h" | 14 #include "webrtc/rtc_base/checks.h" |
| 15 #include "webrtc/base/fakesslidentity.h" | 15 #include "webrtc/rtc_base/fakesslidentity.h" |
| 16 #include "webrtc/base/gunit.h" | 16 #include "webrtc/rtc_base/gunit.h" |
| 17 #include "webrtc/base/logging.h" | 17 #include "webrtc/rtc_base/logging.h" |
| 18 #include "webrtc/base/rtccertificate.h" | 18 #include "webrtc/rtc_base/rtccertificate.h" |
| 19 #include "webrtc/base/safe_conversions.h" | 19 #include "webrtc/rtc_base/safe_conversions.h" |
| 20 #include "webrtc/base/sslidentity.h" | 20 #include "webrtc/rtc_base/sslidentity.h" |
| 21 #include "webrtc/base/thread.h" | 21 #include "webrtc/rtc_base/thread.h" |
| 22 #include "webrtc/base/timeutils.h" | 22 #include "webrtc/rtc_base/timeutils.h" |
| 23 | 23 |
| 24 namespace rtc { | 24 namespace rtc { |
| 25 | 25 |
| 26 namespace { | 26 namespace { |
| 27 | 27 |
| 28 static const char* kTestCertCommonName = "RTCCertificateTest's certificate"; | 28 static const char* kTestCertCommonName = "RTCCertificateTest's certificate"; |
| 29 | 29 |
| 30 } // namespace | 30 } // namespace |
| 31 | 31 |
| 32 class RTCCertificateTest : public testing::Test { | 32 class RTCCertificateTest : public testing::Test { |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 EXPECT_EQ(orig->Expires(), clone->Expires()); | 137 EXPECT_EQ(orig->Expires(), clone->Expires()); |
| 138 } | 138 } |
| 139 | 139 |
| 140 TEST_F(RTCCertificateTest, FromPEMWithInvalidPEM) { | 140 TEST_F(RTCCertificateTest, FromPEMWithInvalidPEM) { |
| 141 RTCCertificatePEM pem("not a valid PEM", "not a valid PEM"); | 141 RTCCertificatePEM pem("not a valid PEM", "not a valid PEM"); |
| 142 scoped_refptr<RTCCertificate> certificate = RTCCertificate::FromPEM(pem); | 142 scoped_refptr<RTCCertificate> certificate = RTCCertificate::FromPEM(pem); |
| 143 EXPECT_FALSE(certificate); | 143 EXPECT_FALSE(certificate); |
| 144 } | 144 } |
| 145 | 145 |
| 146 } // namespace rtc | 146 } // namespace rtc |
| OLD | NEW |