1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
// Copyright 2013 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.
#ifndef CHROME_BROWSER_COMPONENT_UPDATER_TEST_COMPONENT_UPDATER_SERVICE_UNITTEST_H_
#define CHROME_BROWSER_COMPONENT_UPDATER_TEST_COMPONENT_UPDATER_SERVICE_UNITTEST_H_
#include <string>
#include "base/compiler_specific.h"
#include "base/files/file_path.h"
#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "components/component_updater/component_updater_service.h"
#include "content/public/test/test_browser_thread_bundle.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace net {
class LocalHostTestURLRequestInterceptor;
}
namespace component_updater {
class InterceptorFactory;
class TestConfigurator;
class TestInstaller;
class URLRequestPostInterceptor;
// Intercepts HTTP GET requests sent to "localhost".
typedef net::LocalHostTestURLRequestInterceptor GetInterceptor;
class ComponentUpdaterTest : public testing::Test {
public:
enum TestComponents {
kTestComponent_abag,
kTestComponent_jebg,
kTestComponent_ihfo,
};
ComponentUpdaterTest();
~ComponentUpdaterTest() override;
void SetUp() override;
void TearDown() override;
ComponentUpdateService* component_updater();
// Makes the full path to a component updater test file.
const base::FilePath test_file(const char* file);
TestConfigurator* test_configurator();
ComponentUpdateService::Status RegisterComponent(CrxComponent* com,
TestComponents component,
const Version& version,
TestInstaller* installer);
protected:
void RunThreads();
void RunThreadsUntilIdle();
scoped_ptr<InterceptorFactory> interceptor_factory_;
URLRequestPostInterceptor* post_interceptor_; // Owned by the factory.
scoped_ptr<GetInterceptor> get_interceptor_;
private:
TestConfigurator* test_config_;
content::TestBrowserThreadBundle thread_bundle_;
scoped_ptr<ComponentUpdateService> component_updater_;
};
const char expected_crx_url[] =
"http://localhost/download/jebgalgnebhfojomionfpkfelancnnkf.crx";
class MockServiceObserver : public ServiceObserver {
public:
MockServiceObserver();
~MockServiceObserver();
MOCK_METHOD2(OnEvent, void(Events event, const std::string&));
};
class OnDemandTester {
public:
static ComponentUpdateService::Status OnDemand(
ComponentUpdateService* cus,
const std::string& component_id);
};
} // namespace component_updater
#endif // CHROME_BROWSER_COMPONENT_UPDATER_TEST_COMPONENT_UPDATER_SERVICE_UNITTEST_H_
|