aboutsummaryrefslogtreecommitdiffstats
path: root/lib/sol2/tests/runtime_tests/source/lua_value.cpp
blob: 5e3126f065509bc6c4c0be1b7fcdcf3e64c32260 (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
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
// sol3

// The MIT License (MIT)

// Copyright (c) 2013-2019 Rapptz, ThePhD and contributors

// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software and associated documentation files (the "Software"), to deal in
// the Software without restriction, including without limitation the rights to
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
// the Software, and to permit persons to whom the Software is furnished to do so,
// subject to the following conditions:

// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.

// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

#include "sol_test.hpp"

#include <catch.hpp>

#include <vector>
#include <map>
#include <thread>
#include <mutex>
#if defined(SOL_CXX17_FEATURES) && SOL_CXX17_FEATURES
#include <string_view>
#include <variant>
#endif // C++17

struct int_entry {
	int value;

	int_entry() : value(0) {
	}

	int_entry(int v) : value(v) {
	}

	bool operator==(const int_entry& e) const {
		return value == e.value;
	}
};

std::mutex lua_value_construct_require_mutex;

void lua_value_construct_race() {
	sol::state lua;
	try {
		lua.open_libraries();
		lua["a"] = sol::lua_value(lua, 24);
		int a = lua["a"];
		{
			std::lock_guard<std::mutex> lg(lua_value_construct_require_mutex);
			REQUIRE(a == 24);
		}
	}
	catch (const sol::error& e) {
		std::lock_guard<std::mutex> lg(lua_value_construct_require_mutex);
		INFO(e.what());
		REQUIRE(false);
	}
	catch (...) {
		std::lock_guard<std::mutex> lg(lua_value_construct_require_mutex);
		REQUIRE(false);
	}
}

TEST_CASE("lua_value/nested", "make nested values can be put in lua_value properly") {
#if defined(SOL_STD_VARIANT) && SOL_STD_VARIANT
	using mixed_table_entry = std::variant<int, int_entry, std::string>;
	using nested_entry = std::variant<int, int_entry, std::string, std::vector<mixed_table_entry>>;

	const std::vector<std::variant<int, int_entry>> mixed_table_truth = { 1, int_entry(2), 3, int_entry(4), 5 };
	const std::vector<nested_entry> mixed_nested_table_truth = { 1, int_entry(2), 3, int_entry(4), std::vector<mixed_table_entry>{ 5, 6, int_entry(7), "8" } };

	sol::state lua;

	sol::lua_value lv_mixed_table(lua, sol::array_value{ 1, int_entry(2), 3, int_entry(4), 5 });
	sol::lua_value lv_mixed_nested_table(lua, sol::array_value{ 1, int_entry(2), 3, int_entry(4), sol::array_value{ 5, 6, int_entry(7), "8" } });

	REQUIRE(lv_mixed_table.is<sol::table>());
	REQUIRE(lv_mixed_nested_table.is<sol::table>());

	std::vector<std::variant<int, int_entry>> mixed_table_value_lv = lv_mixed_table.as<std::vector<std::variant<int, int_entry>>>();
	std::vector<nested_entry> mixed_nested_table_value_lv = lv_mixed_nested_table.as<std::vector<nested_entry>>();

	REQUIRE(mixed_table_truth == mixed_table_value_lv);
	REQUIRE(mixed_nested_table_truth == mixed_nested_table_value_lv);

	SECTION("type check (object)") {
		sol::object obj_mixed_table(lv_mixed_table.value());
		sol::object obj_mixed_nested_table(lv_mixed_nested_table.value());

		REQUIRE(obj_mixed_table.is<sol::table>());
		REQUIRE(obj_mixed_nested_table.is<sol::table>());

		std::vector<std::variant<int, int_entry>> mixed_table_value = obj_mixed_table.as<std::vector<std::variant<int, int_entry>>>();
		std::vector<nested_entry> mixed_nested_table_value = obj_mixed_nested_table.as<std::vector<nested_entry>>();

		REQUIRE(mixed_table_truth == mixed_table_value);
		REQUIRE(mixed_nested_table_truth == mixed_nested_table_value);
	}
	SECTION("pushing/popping") {
		lua["obj_mixed_table"] = lv_mixed_table;
		lua["obj_mixed_nested_table"] = lv_mixed_nested_table;

		sol::lua_value obj_mixed_table = lua["obj_mixed_table"];
		sol::lua_value obj_mixed_nested_table = lua["obj_mixed_nested_table"];

		REQUIRE(obj_mixed_table.is<sol::table>());
		REQUIRE(obj_mixed_nested_table.is<sol::table>());

		std::vector<std::variant<int, int_entry>> mixed_table_value = obj_mixed_table.as<std::vector<std::variant<int, int_entry>>>();
		std::vector<nested_entry> mixed_nested_table_value = obj_mixed_nested_table.as<std::vector<nested_entry>>();

		REQUIRE(mixed_table_truth == mixed_table_value);
		REQUIRE(mixed_nested_table_truth == mixed_nested_table_value);
	}
	SECTION("pushing/popping (object)") {
		lua["obj_mixed_table"] = lv_mixed_table;
		lua["obj_mixed_nested_table"] = lv_mixed_nested_table;

		sol::object obj_mixed_table = lua["obj_mixed_table"];
		sol::object obj_mixed_nested_table = lua["obj_mixed_nested_table"];

		REQUIRE(obj_mixed_table.is<sol::table>());
		REQUIRE(obj_mixed_nested_table.is<sol::table>());

		std::vector<std::variant<int, int_entry>> mixed_table_value = obj_mixed_table.as<std::vector<std::variant<int, int_entry>>>();
		std::vector<nested_entry> mixed_nested_table_value = obj_mixed_nested_table.as<std::vector<nested_entry>>();

		REQUIRE(mixed_table_truth == mixed_table_value);
		REQUIRE(mixed_nested_table_truth == mixed_nested_table_value);
	}
#else
	REQUIRE(true);
#endif // C++17
}

TEST_CASE("lua_value/nested key value", "make nested values (key value) can be put in lua_value properly") {
#if defined(SOL_STD_VARIANT) && SOL_STD_VARIANT
	using mixed_table_entry = std::variant<int, int_entry, std::string>;
	using nested_entry = std::variant<int, int_entry, std::string, std::vector<mixed_table_entry>>;

	const std::vector<std::variant<int, int_entry>> mixed_table_truth = { 1, int_entry(2), 3, int_entry(4), 5 };
	const std::vector<nested_entry> mixed_nested_table_truth = { 1, int_entry(2), 3, int_entry(4), std::vector<mixed_table_entry>{ 5, 6, int_entry(7), "8" } };

	sol::state lua;

	sol::lua_value lv_mixed_table(lua, sol::array_value{ 1, int_entry(2), 3, int_entry(4), 5 });
	sol::lua_value lv_mixed_nested_table(lua, sol::array_value{ 1, int_entry(2), 3, int_entry(4), sol::array_value{ 5, 6, int_entry(7), "8" } });

	REQUIRE(lv_mixed_table.is<sol::table>());
	REQUIRE(lv_mixed_nested_table.is<sol::table>());

	std::vector<std::variant<int, int_entry>> mixed_table_value_lv = lv_mixed_table.as<std::vector<std::variant<int, int_entry>>>();
	std::vector<nested_entry> mixed_nested_table_value_lv = lv_mixed_nested_table.as<std::vector<nested_entry>>();

	REQUIRE(mixed_table_truth == mixed_table_value_lv);
	REQUIRE(mixed_nested_table_truth == mixed_nested_table_value_lv);

	SECTION("type check (object)") {
		sol::object obj_mixed_table(lv_mixed_table.value());
		sol::object obj_mixed_nested_table(lv_mixed_nested_table.value());

		REQUIRE(obj_mixed_table.is<sol::table>());
		REQUIRE(obj_mixed_nested_table.is<sol::table>());

		std::vector<std::variant<int, int_entry>> mixed_table_value = obj_mixed_table.as<std::vector<std::variant<int, int_entry>>>();
		std::vector<nested_entry> mixed_nested_table_value = obj_mixed_nested_table.as<std::vector<nested_entry>>();

		REQUIRE(mixed_table_truth == mixed_table_value);
		REQUIRE(mixed_nested_table_truth == mixed_nested_table_value);
	}
	SECTION("pushing/popping") {
		lua["obj_mixed_table"] = lv_mixed_table;
		lua["obj_mixed_nested_table"] = lv_mixed_nested_table;

		sol::lua_value obj_mixed_table = lua["obj_mixed_table"];
		sol::lua_value obj_mixed_nested_table = lua["obj_mixed_nested_table"];

		REQUIRE(obj_mixed_table.is<sol::table>());
		REQUIRE(obj_mixed_nested_table.is<sol::table>());

		std::vector<std::variant<int, int_entry>> mixed_table_value = obj_mixed_table.as<std::vector<std::variant<int, int_entry>>>();
		std::vector<nested_entry> mixed_nested_table_value = obj_mixed_nested_table.as<std::vector<nested_entry>>();

		REQUIRE(mixed_table_truth == mixed_table_value);
		REQUIRE(mixed_nested_table_truth == mixed_nested_table_value);
	}
	SECTION("pushing/popping (object)") {
		lua["obj_mixed_table"] = lv_mixed_table;
		lua["obj_mixed_nested_table"] = lv_mixed_nested_table;

		sol::object obj_mixed_table = lua["obj_mixed_table"];
		sol::object obj_mixed_nested_table = lua["obj_mixed_nested_table"];

		REQUIRE(obj_mixed_table.is<sol::table>());
		REQUIRE(obj_mixed_nested_table.is<sol::table>());

		std::vector<std::variant<int, int_entry>> mixed_table_value = obj_mixed_table.as<std::vector<std::variant<int, int_entry>>>();
		std::vector<nested_entry> mixed_nested_table_value = obj_mixed_nested_table.as<std::vector<nested_entry>>();

		REQUIRE(mixed_table_truth == mixed_table_value);
		REQUIRE(mixed_nested_table_truth == mixed_nested_table_value);
	}
#else
	REQUIRE(true);
#endif // C++17
}

TEST_CASE("lua_value/basic types", "make sure we can stick values and nested values in a lua_value and retrieve them") {
	sol::state lua;

	const int_entry userdata_truth = int_entry(3);
	const std::vector<int> int_table_truth = { 1, 2, 3, 4, 5 };
	const std::map<int, int> int_map_truth = { {1, 2}, {3, 4}, {5, 6} };

	sol::lua_value lv_int(lua, 1);
	sol::lua_value lv_double(lua, 2.0);
	sol::lua_value lv_string(lua, "heyo");
	sol::lua_value lv_lstring(lua, L"hiyo");
	sol::lua_value lv_bool(lua, true);
	sol::lua_value lv_nil(lua, sol::lua_nil);
	sol::lua_value lv_userdata(lua, int_entry(3));
	sol::lua_value lv_int_table(lua, { 1, 2, 3, 4, 5 });
	sol::lua_value lv_int_map(lua, { {1, 2}, {3, 4}, {5, 6} });
	REQUIRE(lv_int.is<int>());
	REQUIRE(lv_double.is<double>());
	REQUIRE(lv_string.is<std::string>());
	REQUIRE(lv_lstring.is<std::string>());
	REQUIRE(lv_bool.is<bool>());
	REQUIRE(lv_nil.is<sol::lua_nil_t>());
	REQUIRE(lv_userdata.is<sol::userdata>());
	REQUIRE(lv_userdata.is<int_entry>());
	REQUIRE(lv_int_table.is<sol::table>());
	REQUIRE(lv_int_map.is<sol::table>());

	REQUIRE(lv_int.as<int>() == 1);
	REQUIRE(lv_double.as<double>() == 2.0);
	REQUIRE(lv_string.as<std::string>() == "heyo");
	REQUIRE(lv_lstring.as<std::string>() == "hiyo");
	REQUIRE(lv_lstring.as<std::wstring>() == L"hiyo");
	REQUIRE(lv_bool.as<bool>());
	REQUIRE(lv_nil.as<sol::lua_nil_t>() == sol::lua_nil);
	REQUIRE(lv_userdata.as<int_entry>() == userdata_truth);

	std::vector<int> int_table_value_lv = lv_int_table.as<std::vector<int>>();
	REQUIRE(int_table_truth == int_table_value_lv);
	std::map<int, int> int_map_value_lv = lv_int_map.as<std::map<int, int>>();
	REQUIRE(int_map_truth == int_map_value_lv);

	SECTION("type check (object)") {
		sol::object obj_int(lv_int.value());
		sol::object obj_double(lv_double.value());
		sol::object obj_string(lv_string.value());
		sol::object obj_lstring(lv_lstring.value());
		sol::object obj_bool(lv_bool.value());
		sol::object obj_nil(lv_nil.value());
		sol::object obj_userdata(lv_userdata.value());
		sol::object obj_int_table(lv_int_table.value());
		sol::object obj_int_map(lv_int_map.value());

		REQUIRE(obj_int.is<int>());
		REQUIRE(obj_double.is<double>());
		REQUIRE(obj_string.is<std::string>());
		REQUIRE(obj_lstring.is<std::string>());
		REQUIRE(obj_bool.is<bool>());
		REQUIRE(obj_nil.is<sol::lua_nil_t>());
		REQUIRE(obj_userdata.is<sol::userdata>());
		REQUIRE(obj_userdata.is<int_entry>());
		REQUIRE(obj_int_table.is<sol::table>());
		REQUIRE(obj_int_map.is<sol::table>());

		REQUIRE(obj_int.as<int>() == 1);
		REQUIRE(obj_double.as<double>() == 2.0);
		REQUIRE(obj_string.as<std::string>() == "heyo");
		REQUIRE(obj_lstring.as<std::string>() == "hiyo");
		REQUIRE(obj_lstring.as<std::wstring>() == L"hiyo");
		REQUIRE(obj_bool.as<bool>());
		REQUIRE(obj_userdata.as<int_entry>() == userdata_truth);
		REQUIRE(obj_nil.as<sol::lua_nil_t>() == sol::lua_nil);

		std::vector<int> int_table_value = obj_int_table.as<std::vector<int>>();
		REQUIRE(int_table_truth == int_table_value);
		std::map<int, int> int_map_value = obj_int_map.as<std::map<int, int>>();
		REQUIRE(int_map_truth == int_map_value);
	}
	SECTION("push/popping") {
		lua["obj_int"] = lv_int;
		lua["obj_double"] = lv_double;
		lua["obj_string"] = lv_string;
		lua["obj_lstring"] = lv_lstring;
		lua["obj_bool"] = lv_bool;
		lua["obj_nil"] = lv_nil;
		lua["obj_userdata"] = lv_userdata;
		lua["obj_int_table"] = lv_int_table;
		lua["obj_int_map"] = lv_int_map;

		// these all actually invoke the constructor
		// so do one .get<> explicitly to ensure it's
		// working correctl for a few cases...
		// but it's nice to make sure it's all there now
		sol::lua_value obj_int = lua["obj_int"].get<sol::lua_value>();
		sol::lua_value obj_double = lua["obj_double"].get<sol::lua_value>();
		sol::lua_value obj_string = lua["obj_string"].get<sol::lua_value>();
		sol::lua_value obj_lstring = lua["obj_lstring"].get<sol::lua_value>();
		sol::lua_value obj_bool = lua["obj_bool"].get<sol::lua_value>();
		sol::lua_value obj_nil = lua["obj_nil"];
		sol::lua_value obj_userdata = lua["obj_userdata"];
		sol::lua_value obj_int_table = lua["obj_int_table"];
		sol::lua_value obj_int_map = lua["obj_int_map"];

		REQUIRE(obj_int.is<int>());
		REQUIRE(obj_double.is<double>());
		REQUIRE(obj_string.is<std::string>());
		REQUIRE(obj_lstring.is<std::string>());
		REQUIRE(obj_bool.is<bool>());
		REQUIRE(obj_nil.is<sol::lua_nil_t>());
		REQUIRE(obj_int_table.is<sol::table>());
		REQUIRE(obj_int_map.is<sol::table>());

		REQUIRE(obj_int.as<int>() == 1);
		REQUIRE(obj_double.as<double>() == 2.0);
		REQUIRE(obj_string.as<std::string>() == "heyo");
		REQUIRE(obj_lstring.as<std::string>() == "hiyo");
		REQUIRE(obj_lstring.as<std::wstring>() == L"hiyo");
		REQUIRE(obj_bool.as<bool>());
		REQUIRE(obj_nil.as<sol::lua_nil_t>() == sol::lua_nil);

		std::vector<int> int_table_value = obj_int_table.as<std::vector<int>>();
		REQUIRE(int_table_truth == int_table_value);
		std::map<int, int> int_map_value = obj_int_map.as<std::map<int, int>>();
		REQUIRE(int_map_truth == int_map_value);
	}
	SECTION("push/popping (object)") {
		lua["obj_int"] = lv_int;
		lua["obj_double"] = lv_double;
		lua["obj_string"] = lv_string;
		lua["obj_lstring"] = lv_lstring;
		lua["obj_bool"] = lv_bool;
		lua["obj_nil"] = lv_nil;
		lua["obj_userdata"] = lv_userdata;
		lua["obj_int_table"] = lv_int_table;
		lua["obj_int_map"] = lv_int_map;

		sol::object obj_int = lua["obj_int"];
		sol::object obj_double = lua["obj_double"];
		sol::object obj_string = lua["obj_string"];
		sol::object obj_lstring = lua["obj_lstring"];
		sol::object obj_bool = lua["obj_bool"];
		sol::object obj_nil = lua["obj_nil"];
		sol::object obj_userdata = lua["obj_userdata"];
		sol::object obj_int_table = lua["obj_int_table"];
		sol::object obj_int_map = lua["obj_int_map"];

		REQUIRE(obj_int.is<int>());
		REQUIRE(obj_double.is<double>());
		REQUIRE(obj_string.is<std::string>());
		REQUIRE(obj_lstring.is<std::string>());
		REQUIRE(obj_bool.is<bool>());
		REQUIRE(obj_nil.is<sol::lua_nil_t>());
		REQUIRE(obj_userdata.is<sol::userdata>());
		REQUIRE(obj_userdata.is<int_entry>());
		REQUIRE(obj_int_table.is<sol::table>());

		REQUIRE(obj_int.as<int>() == 1);
		REQUIRE(obj_double.as<double>() == 2.0);
		REQUIRE(obj_string.as<std::string>() == "heyo");
		REQUIRE(obj_lstring.as<std::string>() == "hiyo");
		REQUIRE(obj_lstring.as<std::wstring>() == L"hiyo");
		REQUIRE(obj_bool.as<bool>());
		REQUIRE(obj_nil.as<sol::lua_nil_t>() == sol::lua_nil);
		REQUIRE(obj_userdata.as<int_entry>() == userdata_truth);

		std::vector<int> int_table_value = obj_int_table.as<std::vector<int>>();
		REQUIRE(int_table_truth == int_table_value);
		std::map<int, int> int_map_value = obj_int_map.as<std::map<int, int>>();
		REQUIRE(int_map_truth == int_map_value);
	}
}

TEST_CASE("lua_value/threading", "test that thread_local in lua_value constructors do not race or clobber") {
	REQUIRE_NOTHROW([]() {
		std::thread thrds[24];
		for (int i = 0; i < 24; i++) {
			thrds[i] = std::thread(&lua_value_construct_race);
		}

		for (int i = 0; i < 24; i++) {
			thrds[i].join();
		}
	}());
}