OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <math.h> | 5 #include <math.h> |
6 | 6 |
7 #include <limits> | 7 #include <limits> |
8 | 8 |
9 #include "base/strings/string_number_conversions.h" | 9 #include "base/strings/string_number_conversions.h" |
10 #include "base/utf_string_conversions.h" | 10 #include "base/utf_string_conversions.h" |
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 // One additional test to verify that conversion of numbers in strings with | 302 // One additional test to verify that conversion of numbers in strings with |
303 // embedded NUL characters. The NUL and extra data after it should be | 303 // embedded NUL characters. The NUL and extra data after it should be |
304 // interpreted as junk after the number. | 304 // interpreted as junk after the number. |
305 const char input[] = "0xc0ffee\09"; | 305 const char input[] = "0xc0ffee\09"; |
306 std::string input_string(input, arraysize(input) - 1); | 306 std::string input_string(input, arraysize(input) - 1); |
307 int64 output; | 307 int64 output; |
308 EXPECT_FALSE(HexStringToInt64(input_string, &output)); | 308 EXPECT_FALSE(HexStringToInt64(input_string, &output)); |
309 EXPECT_EQ(0xc0ffee, output); | 309 EXPECT_EQ(0xc0ffee, output); |
310 } | 310 } |
311 | 311 |
| 312 TEST(StringNumberConversionsTest, HexStringToUInt64) { |
| 313 static const struct { |
| 314 std::string input; |
| 315 uint64 output; |
| 316 bool success; |
| 317 } cases[] = { |
| 318 {"0", 0, true}, |
| 319 {"42", 66, true}, |
| 320 {"-42", -66, true}, |
| 321 {"+42", 66, true}, |
| 322 {"40acd88557b", GG_INT64_C(4444444448123), true}, |
| 323 {"7fffffff", INT_MAX, true}, |
| 324 {"-80000000", INT_MIN, true}, |
| 325 {"ffffffff", 0xffffffff, true}, |
| 326 {"DeadBeef", 0xdeadbeef, true}, |
| 327 {"0x42", 66, true}, |
| 328 {"-0x42", -66, true}, |
| 329 {"+0x42", 66, true}, |
| 330 {"0x40acd88557b", GG_INT64_C(4444444448123), true}, |
| 331 {"0x7fffffff", INT_MAX, true}, |
| 332 {"-0x80000000", INT_MIN, true}, |
| 333 {"0xffffffff", 0xffffffff, true}, |
| 334 {"0XDeadBeef", 0xdeadbeef, true}, |
| 335 {"0x7fffffffffffffff", kint64max, true}, |
| 336 {"-0x8000000000000000", 0x8000000000000000L, true}, |
| 337 {"0x8000000000000000", 0x8000000000000000L, true}, |
| 338 {"-0x8000000000000001", 0x7fffffffffffffffL, true}, |
| 339 {"0xFFFFFFFFFFFFFFFF", kuint64max, true}, |
| 340 {"FFFFFFFFFFFFFFFF", kuint64max, true}, |
| 341 {"0x0000000000000000", 0, true}, |
| 342 {"0000000000000000", 0, true}, |
| 343 {"1FFFFFFFFFFFFFFFF", kuint64max, false}, // Overflow test. |
| 344 {"0x0f", 15, true}, |
| 345 {"0f", 15, true}, |
| 346 {" 45", 0x45, false}, |
| 347 {"\t\n\v\f\r 0x45", 0x45, false}, |
| 348 {" 45", 0x45, false}, |
| 349 {"45 ", 0x45, false}, |
| 350 {"45:", 0x45, false}, |
| 351 {"efgh", 0xef, false}, |
| 352 {"0xefgh", 0xef, false}, |
| 353 {"hgfe", 0, false}, |
| 354 {"-", 0, false}, |
| 355 {"", 0, false}, |
| 356 {"0x", 0, false}, |
| 357 }; |
| 358 |
| 359 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(cases); ++i) { |
| 360 uint64 output = 0; |
| 361 EXPECT_EQ(cases[i].success, HexStringToUInt64(cases[i].input, &output)); |
| 362 EXPECT_EQ(cases[i].output, output); |
| 363 } |
| 364 // One additional test to verify that conversion of numbers in strings with |
| 365 // embedded NUL characters. The NUL and extra data after it should be |
| 366 // interpreted as junk after the number. |
| 367 const char input[] = "0xc0ffee\09"; |
| 368 std::string input_string(input, arraysize(input) - 1); |
| 369 uint64 output; |
| 370 EXPECT_FALSE(HexStringToUInt64(input_string, &output)); |
| 371 EXPECT_EQ(0xc0ffeeU, output); |
| 372 } |
| 373 |
312 TEST(StringNumberConversionsTest, HexStringToBytes) { | 374 TEST(StringNumberConversionsTest, HexStringToBytes) { |
313 static const struct { | 375 static const struct { |
314 const std::string input; | 376 const std::string input; |
315 const char* output; | 377 const char* output; |
316 size_t output_len; | 378 size_t output_len; |
317 bool success; | 379 bool success; |
318 } cases[] = { | 380 } cases[] = { |
319 {"0", "", 0, false}, // odd number of characters fails | 381 {"0", "", 0, false}, // odd number of characters fails |
320 {"00", "\0", 1, true}, | 382 {"00", "\0", 1, true}, |
321 {"42", "\x42", 1, true}, | 383 {"42", "\x42", 1, true}, |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
433 | 495 |
434 TEST(StringNumberConversionsTest, HexEncode) { | 496 TEST(StringNumberConversionsTest, HexEncode) { |
435 std::string hex(HexEncode(NULL, 0)); | 497 std::string hex(HexEncode(NULL, 0)); |
436 EXPECT_EQ(hex.length(), 0U); | 498 EXPECT_EQ(hex.length(), 0U); |
437 unsigned char bytes[] = {0x01, 0xff, 0x02, 0xfe, 0x03, 0x80, 0x81}; | 499 unsigned char bytes[] = {0x01, 0xff, 0x02, 0xfe, 0x03, 0x80, 0x81}; |
438 hex = HexEncode(bytes, sizeof(bytes)); | 500 hex = HexEncode(bytes, sizeof(bytes)); |
439 EXPECT_EQ(hex.compare("01FF02FE038081"), 0); | 501 EXPECT_EQ(hex.compare("01FF02FE038081"), 0); |
440 } | 502 } |
441 | 503 |
442 } // namespace base | 504 } // namespace base |
OLD | NEW |