blob: eec60d814a5310bd6397eb395aae6211d038dd59 (
plain)
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
|
// 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.
#ifndef MOJO_SHELL_PUBLIC_CPP_APPLICATION_TEST_BASE_H_
#define MOJO_SHELL_PUBLIC_CPP_APPLICATION_TEST_BASE_H_
#include "base/memory/scoped_ptr.h"
#include "mojo/public/cpp/bindings/array.h"
#include "mojo/public/cpp/bindings/string.h"
#include "mojo/public/cpp/system/macros.h"
#include "mojo/shell/public/cpp/application_impl.h"
#include "mojo/shell/public/cpp/shell_client.h"
#include "mojo/shell/public/interfaces/application.mojom.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace mojo {
class ApplicationImpl;
namespace test {
// Run all application tests. This must be called after the environment is
// initialized, to support construction of a default run loop.
MojoResult RunAllTests(MojoHandle application_request_handle);
// Used to configure the ApplicationImpl. This is used internally by
// ApplicationTestBase, but useful if you do not want to subclass
// ApplicationTestBase.
class TestHelper {
public:
explicit TestHelper(ShellClient* client);
~TestHelper();
Shell* shell() { return application_impl_.get(); }
std::string shell_url() { return url_; }
private:
// The application delegate used if GetShellClient is not overridden.
ShellClient default_shell_client_;
// The application implementation instance, reconstructed for each test.
scoped_ptr<ApplicationImpl> application_impl_;
std::string url_;
MOJO_DISALLOW_COPY_AND_ASSIGN(TestHelper);
};
// A GTEST base class for application testing executed in mojo_shell.
class ApplicationTestBase : public testing::Test {
public:
ApplicationTestBase();
~ApplicationTestBase() override;
protected:
Shell* shell() {
return test_helper_ ? test_helper_->shell() : nullptr;
}
std::string shell_url() const {
return test_helper_ ? test_helper_->shell_url() : std::string();
}
// Get the ShellClient for the application to be tested.
virtual ShellClient* GetShellClient();
// testing::Test:
void SetUp() override;
void TearDown() override;
// True by default, which indicates a MessageLoop will automatically be
// created for the application. Tests may override this function to prevent
// a default loop from being created.
virtual bool ShouldCreateDefaultRunLoop();
private:
scoped_ptr<TestHelper> test_helper_;
MOJO_DISALLOW_COPY_AND_ASSIGN(ApplicationTestBase);
};
} // namespace test
} // namespace mojo
#endif // MOJO_SHELL_PUBLIC_CPP_APPLICATION_TEST_BASE_H_
|