view tests/js-util/main.cpp @ 117:9b9b09543d2a

CMake: increase required version because of a false-positive warning in Ninja
author David Demelier <markand@malikania.fr>
date Fri, 29 Apr 2016 10:08:17 +0200
parents 1ed760f6e0c6
children fcfa8ac395fd
line wrap: on
line source

/*
 * main.cpp -- test Irccd.Util API
 *
 * Copyright (c) 2013-2016 David Demelier <markand@malikania.fr>
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#include <gtest/gtest.h>

#include <irccd/js-irccd.hpp>
#include <irccd/js-util.hpp>

using namespace irccd;

TEST(TestJsUtil, formatSimple)
{
	duk::Context ctx;

	loadJsIrccd(ctx);
	loadJsUtil(ctx);

	try {
		auto ret = duk::pevalString(ctx,
			"result = Irccd.Util.format(\"#{target}\", { target: \"markand\" })"
		);

		if (ret != 0) {
			throw duk::error(ctx, -1);
		}
	} catch (const std::exception &ex) {
		FAIL() << ex.what();
	}
}

TEST(TestJsUtil, splituser)
{
	duk::Context ctx;

	loadJsIrccd(ctx);
	loadJsUtil(ctx);

	try {
		if (duk::pevalString(ctx, "result = Irccd.Util.splituser(\"user!~user@hyper/super/host\");") != 0) {
			throw duk::error(ctx, -1);
		}

		ASSERT_EQ("user", duk::getGlobal<std::string>(ctx, "result"));
	} catch (const std::exception &ex) {
		FAIL() << ex.what();
	}
}

TEST(TestJsUtil, splithost)
{
	duk::Context ctx;

	loadJsIrccd(ctx);
	loadJsUtil(ctx);

	try {
		if (duk::pevalString(ctx, "result = Irccd.Util.splithost(\"user!~user@hyper/super/host\");") != 0) {
			throw duk::error(ctx, -1);
		}

		ASSERT_EQ("!~user@hyper/super/host", duk::getGlobal<std::string>(ctx, "result"));
	} catch (const std::exception &ex) {
		FAIL() << ex.what();
	}
}

int main(int argc, char **argv)
{
	testing::InitGoogleTest(&argc, argv);

	return RUN_ALL_TESTS();
}