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

Unified Diff: chrome/browser/push_messaging/background_budget_service_unittest.cc

Issue 1861683002: Background service worker push message processing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: dcheck ordering Created 4 years, 8 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: chrome/browser/push_messaging/background_budget_service_unittest.cc
diff --git a/chrome/browser/push_messaging/background_budget_service_unittest.cc b/chrome/browser/push_messaging/background_budget_service_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..a6e99f941ab65ad32a7fb0880d9fbdd302830c97
--- /dev/null
+++ b/chrome/browser/push_messaging/background_budget_service_unittest.cc
@@ -0,0 +1,50 @@
+// Copyright 2016 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 <stdint.h>
+#include <string>
+
+#include "chrome/browser/push_messaging/background_budget_service.h"
+#include "chrome/test/base/testing_profile.h"
+#include "content/public/test/test_browser_thread_bundle.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace {
+
+const char kTestOrigin[] = "https://example.com";
+const char kTestData[] = "1111101111";
+
+} // namespace
+
+class BackgroundBudgetServiceTest : public testing::Test {
+ public:
+ BackgroundBudgetServiceTest() {}
+ ~BackgroundBudgetServiceTest() override {}
+
+ TestingProfile* profile() { return &profile_; }
+
+ private:
+ content::TestBrowserThreadBundle thread_bundle_;
+ TestingProfile profile_;
+};
+
+TEST_F(BackgroundBudgetServiceTest, GetBudgetFailure) {
+ const GURL origin(kTestOrigin);
+
+ std::string budget_string =
+ BackgroundBudgetService::GetBudget(profile(), origin);
+
+ EXPECT_EQ(std::string(), budget_string);
+}
+
+TEST_F(BackgroundBudgetServiceTest, GetBudgetSuccess) {
+ const GURL origin(kTestOrigin);
+
+ BackgroundBudgetService::StoreBudget(profile(), origin, kTestData);
+
+ std::string budget_string =
+ BackgroundBudgetService::GetBudget(profile(), origin);
+
+ EXPECT_EQ(kTestData, budget_string);
+}

Powered by Google App Engine
This is Rietveld 408576698