blob: bba59168f9e3d6f517a4a3128e7b548ff3e72c6a (
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
87
|
// 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/connector.h"
#include "mojo/shell/public/cpp/shell_client.h"
#include "mojo/shell/public/cpp/shell_connection.h"
#include "mojo/shell/public/interfaces/shell_client.mojom.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace mojo {
class ShellConnection;
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 shell_client_request_handle);
// Used to configure the ShellConnection. This is used internally by
// ApplicationTestBase, but useful if you do not want to subclass
// ApplicationTestBase.
class TestHelper {
public:
explicit TestHelper(ShellClient* client);
~TestHelper();
Connector* connector() { return shell_connection_->connector(); }
std::string test_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<ShellConnection> shell_connection_;
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:
Connector* connector() {
return test_helper_ ? test_helper_->connector() : nullptr;
}
std::string test_url() const {
return test_helper_ ? test_helper_->test_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_
|