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
|
// Copyright 2015 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 EXTENSIONS_COMMON_PERMISSIONS_PERMISSION_MESSAGE_TEST_UTIL_H_
#define EXTENSIONS_COMMON_PERMISSIONS_PERMISSION_MESSAGE_TEST_UTIL_H_
#include <string>
#include <vector>
#include "base/strings/string16.h"
#include "extensions/common/manifest.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace extensions {
class PermissionsData;
class PermissionSet;
testing::AssertionResult VerifyHasPermissionMessage(
const PermissionsData* permissions_data,
const std::string& expected_message);
testing::AssertionResult VerifyHasPermissionMessage(
const PermissionsData* permissions_data,
const base::string16& expected_message);
testing::AssertionResult VerifyHasPermissionMessage(
const PermissionSet& permissions,
Manifest::Type extension_type,
const std::string& expected_message);
testing::AssertionResult VerifyHasPermissionMessage(
const PermissionSet& permissions,
Manifest::Type extension_type,
const base::string16& expected_message);
testing::AssertionResult VerifyNoPermissionMessages(
const PermissionsData* permissions_data);
testing::AssertionResult VerifyOnePermissionMessage(
const PermissionsData* permissions_data,
const std::string& expected_message);
testing::AssertionResult VerifyOnePermissionMessage(
const PermissionsData* permissions_data,
const base::string16& expected_message);
testing::AssertionResult VerifyOnePermissionMessage(
const PermissionSet& permissions,
Manifest::Type extension_type,
const base::string16& expected_message);
testing::AssertionResult VerifyOnePermissionMessageWithSubmessages(
const PermissionsData* permissions_data,
const std::string& expected_message,
const std::vector<std::string>& expected_submessages);
testing::AssertionResult VerifyOnePermissionMessageWithSubmessages(
const PermissionsData* permissions_data,
const base::string16& expected_message,
const std::vector<base::string16>& expected_submessages);
testing::AssertionResult VerifyTwoPermissionMessages(
const PermissionsData* permissions_data,
const std::string& expected_message_1,
const std::string& expected_message_2,
bool check_order);
testing::AssertionResult VerifyTwoPermissionMessages(
const PermissionsData* permissions_data,
const base::string16& expected_message_1,
const base::string16& expected_message_2,
bool check_order);
testing::AssertionResult VerifyPermissionMessages(
const PermissionsData* permissions_data,
const std::vector<std::string>& expected_messages,
bool check_order);
testing::AssertionResult VerifyPermissionMessages(
const PermissionsData* permissions_data,
const std::vector<base::string16>& expected_messages,
bool check_order);
testing::AssertionResult VerifyPermissionMessagesWithSubmessages(
const PermissionsData* permissions_data,
const std::vector<std::string>& expected_messages,
const std::vector<std::vector<std::string>>& expected_submessages,
bool check_order);
testing::AssertionResult VerifyPermissionMessagesWithSubmessages(
const PermissionsData* permissions_data,
const std::vector<base::string16>& expected_messages,
const std::vector<std::vector<base::string16>>& expected_submessages,
bool check_order);
} // namespace extensions
#endif // EXTENSIONS_COMMON_PERMISSIONS_PERMISSION_MESSAGE_TEST_UTIL_H_
|