Chromium Code Reviews| 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..ebc0c2abd252f4c60d1b05988e65b04008209276 |
| --- /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(budget_string, std::string()); |
|
Bernhard Bauer
2016/04/12 08:48:25
And expected value first, please :)
|
| +} |
| + |
| +TEST_F(BackgroundBudgetServiceTest, GetBudgetSuccess) { |
| + const GURL origin(kTestOrigin); |
| + |
| + BackgroundBudgetService::StoreBudget(profile(), origin, kTestData); |
| + |
| + std::string budget_string = |
| + BackgroundBudgetService::GetBudget(profile(), origin); |
| + |
| + EXPECT_EQ(budget_string, kTestData); |
| +} |