| 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);
|
| +}
|
|
|