diff tests/src/libirccd-js/js-api-irccd/main.cpp @ 773:8c44bbcbbab9

Misc: style, cleanup and update
author David Demelier <markand@malikania.fr>
date Fri, 26 Oct 2018 13:01:00 +0200
parents 35c1517d705d
children 06cc2f95f479
line wrap: on
line diff
--- a/tests/src/libirccd-js/js-api-irccd/main.cpp	Wed Oct 24 13:24:03 2018 +0200
+++ b/tests/src/libirccd-js/js-api-irccd/main.cpp	Fri Oct 26 13:01:00 2018 +0200
@@ -32,84 +32,84 @@
 
 BOOST_AUTO_TEST_CASE(version)
 {
-    const auto ret = duk_peval_string(plugin_->get_context(),
-        "major = Irccd.version.major;"
-        "minor = Irccd.version.minor;"
-        "patch = Irccd.version.patch;"
-    );
+	const auto ret = duk_peval_string(plugin_->get_context(),
+		"major = Irccd.version.major;"
+		"minor = Irccd.version.minor;"
+		"patch = Irccd.version.patch;"
+	);
 
-    if (ret != 0)
-        throw duk::get_stack(plugin_->get_context(), -1);
+	if (ret != 0)
+		throw duk::get_stack(plugin_->get_context(), -1);
 
-    BOOST_TEST(duk_get_global_string(plugin_->get_context(), "major"));
-    BOOST_TEST(IRCCD_VERSION_MAJOR == duk_get_int(plugin_->get_context(), -1));
-    BOOST_TEST(duk_get_global_string(plugin_->get_context(), "minor"));
-    BOOST_TEST(IRCCD_VERSION_MINOR == duk_get_int(plugin_->get_context(), -1));
-    BOOST_TEST(duk_get_global_string(plugin_->get_context(), "patch"));
-    BOOST_TEST(IRCCD_VERSION_PATCH == duk_get_int(plugin_->get_context(), -1));
+	BOOST_TEST(duk_get_global_string(plugin_->get_context(), "major"));
+	BOOST_TEST(IRCCD_VERSION_MAJOR == duk_get_int(plugin_->get_context(), -1));
+	BOOST_TEST(duk_get_global_string(plugin_->get_context(), "minor"));
+	BOOST_TEST(IRCCD_VERSION_MINOR == duk_get_int(plugin_->get_context(), -1));
+	BOOST_TEST(duk_get_global_string(plugin_->get_context(), "patch"));
+	BOOST_TEST(IRCCD_VERSION_PATCH == duk_get_int(plugin_->get_context(), -1));
 }
 
 BOOST_AUTO_TEST_CASE(from_javascript)
 {
-    const auto ret = duk_peval_string(plugin_->get_context(),
-        "try {"
-        "  throw new Irccd.SystemError(1, 'test');"
-        "} catch (e) {"
-        "  errno = e.errno;"
-        "  name = e.name;"
-        "  message = e.message;"
-        "  v1 = (e instanceof Error);"
-        "  v2 = (e instanceof Irccd.SystemError);"
-        "}"
-    );
+	const auto ret = duk_peval_string(plugin_->get_context(),
+		"try {"
+		"  throw new Irccd.SystemError(1, 'test');"
+		"} catch (e) {"
+		"  errno = e.errno;"
+		"  name = e.name;"
+		"  message = e.message;"
+		"  v1 = (e instanceof Error);"
+		"  v2 = (e instanceof Irccd.SystemError);"
+		"}"
+	);
 
-    if (ret != 0)
-        throw duk::get_stack(plugin_->get_context(), -1);
+	if (ret != 0)
+		throw duk::get_stack(plugin_->get_context(), -1);
 
-    BOOST_TEST(duk_get_global_string(plugin_->get_context(), "errno"));
-    BOOST_TEST(1 == duk_get_int(plugin_->get_context(), -1));
-    BOOST_TEST(duk_get_global_string(plugin_->get_context(), "name"));
-    BOOST_TEST("SystemError" == duk_get_string(plugin_->get_context(), -1));
-    BOOST_TEST(duk_get_global_string(plugin_->get_context(), "message"));
-    BOOST_TEST("test" == duk_get_string(plugin_->get_context(), -1));
-    BOOST_TEST(duk_get_global_string(plugin_->get_context(), "v1"));
-    BOOST_TEST(duk_get_boolean(plugin_->get_context(), -1));
-    BOOST_TEST(duk_get_global_string(plugin_->get_context(), "v2"));
-    BOOST_TEST(duk_get_boolean(plugin_->get_context(), -1));
+	BOOST_TEST(duk_get_global_string(plugin_->get_context(), "errno"));
+	BOOST_TEST(1 == duk_get_int(plugin_->get_context(), -1));
+	BOOST_TEST(duk_get_global_string(plugin_->get_context(), "name"));
+	BOOST_TEST("SystemError" == duk_get_string(plugin_->get_context(), -1));
+	BOOST_TEST(duk_get_global_string(plugin_->get_context(), "message"));
+	BOOST_TEST("test" == duk_get_string(plugin_->get_context(), -1));
+	BOOST_TEST(duk_get_global_string(plugin_->get_context(), "v1"));
+	BOOST_TEST(duk_get_boolean(plugin_->get_context(), -1));
+	BOOST_TEST(duk_get_global_string(plugin_->get_context(), "v2"));
+	BOOST_TEST(duk_get_boolean(plugin_->get_context(), -1));
 }
 
 BOOST_AUTO_TEST_CASE(from_native)
 {
-    duk_push_c_function(plugin_->get_context(), [] (duk_context *ctx) -> duk_ret_t {
-        duk::raise(ctx, std::system_error(make_error_code(std::errc::invalid_argument)));
+	duk_push_c_function(plugin_->get_context(), [] (duk_context *ctx) -> duk_ret_t {
+		duk::raise(ctx, std::system_error(make_error_code(std::errc::invalid_argument)));
 
-        return 0;
-    }, 0);
+		return 0;
+	}, 0);
 
-    duk_put_global_string(plugin_->get_context(), "f");
+	duk_put_global_string(plugin_->get_context(), "f");
 
-    const auto ret = duk_peval_string(plugin_->get_context(),
-        "try {"
-        "  f();"
-        "} catch (e) {"
-        "  errno = e.errno;"
-        "  name = e.name;"
-        "  v1 = (e instanceof Error);"
-        "  v2 = (e instanceof Irccd.SystemError);"
-        "}"
-    );
+	const auto ret = duk_peval_string(plugin_->get_context(),
+		"try {"
+		"  f();"
+		"} catch (e) {"
+		"  errno = e.errno;"
+		"  name = e.name;"
+		"  v1 = (e instanceof Error);"
+		"  v2 = (e instanceof Irccd.SystemError);"
+		"}"
+	);
 
-    if (ret != 0)
-        throw duk::get_stack(plugin_->get_context(), -1);
+	if (ret != 0)
+		throw duk::get_stack(plugin_->get_context(), -1);
 
-    BOOST_TEST(duk_get_global_string(plugin_->get_context(), "errno"));
-    BOOST_TEST(EINVAL == duk_get_int(plugin_->get_context(), -1));
-    BOOST_TEST(duk_get_global_string(plugin_->get_context(), "name"));
-    BOOST_TEST("SystemError" == duk_get_string(plugin_->get_context(), -1));
-    BOOST_TEST(duk_get_global_string(plugin_->get_context(), "v1"));
-    BOOST_TEST(duk_get_boolean(plugin_->get_context(), -1));
-    BOOST_TEST(duk_get_global_string(plugin_->get_context(), "v2"));
-    BOOST_TEST(duk_get_boolean(plugin_->get_context(), -1));
+	BOOST_TEST(duk_get_global_string(plugin_->get_context(), "errno"));
+	BOOST_TEST(EINVAL == duk_get_int(plugin_->get_context(), -1));
+	BOOST_TEST(duk_get_global_string(plugin_->get_context(), "name"));
+	BOOST_TEST("SystemError" == duk_get_string(plugin_->get_context(), -1));
+	BOOST_TEST(duk_get_global_string(plugin_->get_context(), "v1"));
+	BOOST_TEST(duk_get_boolean(plugin_->get_context(), -1));
+	BOOST_TEST(duk_get_global_string(plugin_->get_context(), "v2"));
+	BOOST_TEST(duk_get_boolean(plugin_->get_context(), -1));
 }
 
 BOOST_AUTO_TEST_SUITE_END()