Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(74)

Side by Side Diff: net/der/parser_unittest.cc

Issue 1248043002: Add functions for DER parsing a BIT STRING. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« net/der/parser.cc ('K') | « net/der/parser.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/logging.h" 5 #include "base/logging.h"
6 #include "base/numerics/safe_math.h" 6 #include "base/numerics/safe_math.h"
7 #include "net/der/input.h" 7 #include "net/der/input.h"
8 #include "net/der/parse_values.h" 8 #include "net/der/parse_values.h"
9 #include "net/der/parser.h" 9 #include "net/der/parser.h"
10 #include "testing/gtest/include/gtest/gtest.h" 10 #include "testing/gtest/include/gtest/gtest.h"
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 const uint8_t der[] = {0x02, 0x01, 0x01}; 189 const uint8_t der[] = {0x02, 0x01, 0x01};
190 Parser parser((Input(der))); 190 Parser parser((Input(der)));
191 191
192 Input value; 192 Input value;
193 bool present; 193 bool present;
194 ASSERT_TRUE(parser.ReadOptionalTag(0x04, &value, &present)); 194 ASSERT_TRUE(parser.ReadOptionalTag(0x04, &value, &present));
195 ASSERT_FALSE(present); 195 ASSERT_FALSE(present);
196 ASSERT_FALSE(parser.Advance()); 196 ASSERT_FALSE(parser.Advance());
197 } 197 }
198 198
199 TEST(ParserTest, ReadBitString) {
200 const uint8_t der[] = {0x03, 0x03, 0x01, 0xAA, 0xBE};
201 Parser parser((Input(der)));
202
203 Input bytes;
204 uint8_t unused_bits;
205 ASSERT_TRUE(parser.ReadBitString(&bytes, &unused_bits));
206 ASSERT_FALSE(parser.HasMore());
nharper 2015/07/21 23:23:47 EXPECT_FALSE
eroman 2015/07/22 17:05:23 Done.
207
208 ASSERT_EQ(2u, bytes.Length());
209 ASSERT_EQ(1u, unused_bits);
210 ASSERT_EQ(0xAA, bytes.UnsafeData()[0]);
211 ASSERT_EQ(0xBE, bytes.UnsafeData()[1]);
nharper 2015/07/21 23:23:47 EXPECT_EQ (for lines 209-211) Only parser.ReadBitS
eroman 2015/07/22 17:05:23 Done.
212 }
213
214 TEST(ParserTest, ReadBitString_BadTag) {
215 const uint8_t der[] = {0x05, 0x03, 0x01, 0xAA, 0xBE};
216 Parser parser((Input(der)));
217
218 Input bytes;
219 uint8_t unused_bits;
220 ASSERT_FALSE(parser.ReadBitString(&bytes, &unused_bits));
221 }
222
223 // Reads a BIT STRING with one unused bit -- should fail.
224 TEST(ParserTest, ReadBitStringNoUnusedBits) {
225 const uint8_t der[] = {0x03, 0x03, 0x01, 0xAA, 0xBE};
226 Parser parser((Input(der)));
227
228 Input bytes;
229 ASSERT_FALSE(parser.ReadBitStringNoUnusedBits(&bytes));
230 }
231
199 } // namespace test 232 } // namespace test
200 } // namespace der 233 } // namespace der
201 } // namespace net 234 } // namespace net
OLDNEW
« net/der/parser.cc ('K') | « net/der/parser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698