-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathutility.h
203 lines (169 loc) · 6.26 KB
/
utility.h
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
// Copyright 2021 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "gtest/gtest.h"
#include <fstream>
#include <iostream>
#include <memory>
#include <sstream>
#include <string>
#include <utility>
#include <vector>
#include "include/proxy-wasm/context.h"
#include "include/proxy-wasm/wasm.h"
#if defined(PROXY_WASM_HOST_ENGINE_V8)
#include "include/proxy-wasm/v8.h"
#endif
#if defined(PROXY_WASM_HOST_ENGINE_WAVM)
#include "include/proxy-wasm/wavm.h"
#endif
#if defined(PROXY_WASM_HOST_ENGINE_WASMTIME)
#include "include/proxy-wasm/wasmtime.h"
#endif
#if defined(PROXY_WASM_HOST_ENGINE_WASMEDGE)
#include "include/proxy-wasm/wasmedge.h"
#endif
#if defined(PROXY_WASM_HOST_ENGINE_WAMR)
#include "include/proxy-wasm/wamr.h"
#endif
namespace proxy_wasm {
std::vector<std::string> getWasmEngines();
std::string readTestWasmFile(const std::string &filename);
class TestIntegration : public WasmVmIntegration {
public:
~TestIntegration() override = default;
WasmVmIntegration *clone() override { return new TestIntegration{}; }
void setLogLevel(LogLevel level) { log_level_ = level; }
LogLevel getLogLevel() override { return log_level_; }
void error(std::string_view message) override {
std::cout << "ERROR from integration: " << message << std::endl;
error_log_ += std::string(message) + "\n";
}
bool isErrorLogEmpty() { return error_log_.empty(); }
bool isErrorLogged(std::string_view message) {
return error_log_.find(message) != std::string::npos;
}
void trace(std::string_view message) override {
std::cout << "TRACE from integration: " << message << std::endl;
trace_log_ += std::string(message) + "\n";
}
bool isTraceLogEmpty() { return trace_log_.empty(); }
bool isTraceLogged(std::string_view message) {
return trace_log_.find(message) != std::string::npos;
}
bool getNullVmFunction(std::string_view /*function_name*/, bool /*returns_word*/,
int /*number_of_arguments*/, NullPlugin * /*plugin*/,
void * /*ptr_to_function_return*/) override {
return false;
};
private:
std::string error_log_;
std::string trace_log_;
LogLevel log_level_ = LogLevel::trace;
};
class TestContext : public ContextBase {
public:
TestContext(WasmBase *wasm) : ContextBase(wasm) {}
TestContext(WasmBase *wasm, const std::shared_ptr<PluginBase> &plugin)
: ContextBase(wasm, plugin) {}
TestContext(WasmBase *wasm, uint32_t parent_context_id,
std::shared_ptr<PluginHandleBase> &plugin_handle)
: ContextBase(wasm, parent_context_id, plugin_handle) {}
WasmResult log(uint32_t /*log_level*/, std::string_view message) override {
auto new_log = std::string(message) + "\n";
log_ += new_log;
global_log_ += new_log;
return WasmResult::Ok;
}
WasmResult getProperty(std::string_view path, std::string *result) override {
if (path == "plugin_root_id") {
*result = root_id_;
return WasmResult::Ok;
}
return unimplemented();
}
bool isLogEmpty() { return log_.empty(); }
bool isLogged(std::string_view message) { return log_.find(message) != std::string::npos; }
static bool isGlobalLogged(std::string_view message) {
return global_log_.find(message) != std::string::npos;
}
static void resetGlobalLog() { global_log_ = ""; }
uint64_t getCurrentTimeNanoseconds() override {
return std::chrono::duration_cast<std::chrono::nanoseconds>(
std::chrono::system_clock::now().time_since_epoch())
.count();
}
uint64_t getMonotonicTimeNanoseconds() override {
return std::chrono::duration_cast<std::chrono::nanoseconds>(
std::chrono::steady_clock::now().time_since_epoch())
.count();
}
private:
std::string log_;
static std::string global_log_;
};
class TestWasm : public WasmBase {
public:
TestWasm(std::unique_ptr<WasmVm> wasm_vm, std::unordered_map<std::string, std::string> envs = {},
std::string_view vm_id = "", std::string_view vm_configuration = "",
std::string_view vm_key = "")
: WasmBase(std::move(wasm_vm), vm_id, vm_configuration, vm_key, std::move(envs), {}) {}
TestWasm(const std::shared_ptr<WasmHandleBase> &base_wasm_handle, const WasmVmFactory &factory)
: WasmBase(base_wasm_handle, factory) {}
ContextBase *createVmContext() override { return new TestContext(this); };
ContextBase *createRootContext(const std::shared_ptr<PluginBase> &plugin) override {
return new TestContext(this, plugin);
}
};
class TestVm : public testing::TestWithParam<std::string> {
public:
TestVm() {
engine_ = GetParam();
vm_ = makeVm(engine_);
}
static std::unique_ptr<proxy_wasm::WasmVm> makeVm(const std::string &engine) {
std::unique_ptr<proxy_wasm::WasmVm> vm;
if (engine.empty()) {
ADD_FAILURE() << "engine must not be empty";
#if defined(PROXY_WASM_HOST_ENGINE_V8)
} else if (engine == "v8") {
vm = proxy_wasm::createV8Vm();
#endif
#if defined(PROXY_WASM_HOST_ENGINE_WAVM)
} else if (engine == "wavm") {
vm = proxy_wasm::createWavmVm();
#endif
#if defined(PROXY_WASM_HOST_ENGINE_WASMTIME)
} else if (engine == "wasmtime") {
vm = proxy_wasm::createWasmtimeVm();
#endif
#if defined(PROXY_WASM_HOST_ENGINE_WASMEDGE)
} else if (engine == "wasmedge") {
vm = proxy_wasm::createWasmEdgeVm();
#endif
#if defined(PROXY_WASM_HOST_ENGINE_WAMR)
} else if (engine == "wamr") {
vm = proxy_wasm::createWamrVm();
#endif
} else {
ADD_FAILURE() << "compiled without support for the requested \"" << engine << "\" engine";
}
vm->integration() = std::make_unique<TestIntegration>();
return vm;
}
std::unique_ptr<proxy_wasm::WasmVm> vm_;
std::string engine_;
};
// TODO: remove when #412 is fixed.
GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(TestVm);
} // namespace proxy_wasm