• Max Kellermann's avatar
    check.h: remove obsolete header · ce49d99c
    Max Kellermann authored
    Since we switched from autotools to Meson in commit
    94592c14, we don't need to include
    `config.h` early to properly enable large file support.  Meson passes
    the required macros on the compiler command line instead of defining
    them in `config.h`.
    
    This means we can include `config.h` at any time, whenever we want to
    check its macros, and there are no ordering constraints.
    ce49d99c
TestDivideString.cxx 970 Bytes
/*
 * Unit tests for src/util/
 */

#include "util/DivideString.hxx"

#include <gtest/gtest.h>

TEST(DivideString, Basic)
{
	constexpr char input[] = "foo.bar";
	const DivideString ds(input, '.');
	EXPECT_TRUE(ds.IsDefined());
	EXPECT_FALSE(ds.empty());
	EXPECT_EQ(0, strcmp(ds.GetFirst(), "foo"));
	EXPECT_EQ(input + 4, ds.GetSecond());
}

TEST(DivideString, Empty)
{
	constexpr char input[] = ".bar";
	const DivideString ds(input, '.');
	EXPECT_TRUE(ds.IsDefined());
	EXPECT_TRUE(ds.empty());
	EXPECT_EQ(0, strcmp(ds.GetFirst(), ""));
	EXPECT_EQ(input + 1, ds.GetSecond());
}

TEST(DivideString, Fail)
{
	constexpr char input[] = "foo!bar";
	const DivideString ds(input, '.');
	EXPECT_FALSE(ds.IsDefined());
}

TEST(DivideString, Strip)
{
	constexpr char input[] = " foo\t.\nbar\r";
	const DivideString ds(input, '.', true);
	EXPECT_TRUE(ds.IsDefined());
	EXPECT_FALSE(ds.empty());
	EXPECT_EQ(0, strcmp(ds.GetFirst(), "foo"));
	EXPECT_EQ(input + 7, ds.GetSecond());
}