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

Unified Diff: trunk/src/third_party/libaddressinput/chromium/fallback_data_store_unittest.cc

Issue 388613002: Revert 282408 "Use upstream libaddressinput in Chrome." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
Index: trunk/src/third_party/libaddressinput/chromium/fallback_data_store_unittest.cc
===================================================================
--- trunk/src/third_party/libaddressinput/chromium/fallback_data_store_unittest.cc (revision 282425)
+++ trunk/src/third_party/libaddressinput/chromium/fallback_data_store_unittest.cc (working copy)
@@ -1,39 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "third_party/libaddressinput/chromium/fallback_data_store.h"
-
-#include <cstddef>
-#include <ctime>
-#include <string>
-
-#include "testing/gtest/include/gtest/gtest.h"
-#include "third_party/libaddressinput/src/cpp/src/util/json.h"
-#include "third_party/libaddressinput/src/cpp/src/validating_util.h"
-
-namespace autofill {
-
-using i18n::addressinput::Json;
-using i18n::addressinput::ValidatingUtil;
-
-TEST(FallbackDataStore, Parsability) {
- std::string data;
- ASSERT_TRUE(FallbackDataStore::Get("data/US", &data));
-
- // Should be stale.
- EXPECT_FALSE(ValidatingUtil::UnwrapTimestamp(&data, time(NULL)));
-
- // Should be uncorrupted.
- EXPECT_TRUE(ValidatingUtil::UnwrapChecksum(&data));
-
- // Should be valid JSON.
- Json json;
- ASSERT_TRUE(json.ParseObject(data));
-
- // Should have a dictionary for "data/US", as this is aggregate data.
- EXPECT_FALSE(json.HasStringValueForKey("data/US"));
- EXPECT_TRUE(json.HasDictionaryValueForKey("data/US"));
-}
-
-} // namespace autofill

Powered by Google App Engine
This is Rietveld 408576698