• 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
TestMimeType.cxx 1.07 KB
/*
 * Unit tests for src/util/
 */

#include "util/MimeType.hxx"

#include <gtest/gtest.h>

TEST(MimeType, Base)
{
	EXPECT_EQ("", GetMimeTypeBase(""));
	EXPECT_EQ("", GetMimeTypeBase(";"));
	EXPECT_EQ("foo", GetMimeTypeBase("foo"));
	EXPECT_EQ("foo/bar", GetMimeTypeBase("foo/bar"));
	EXPECT_EQ("foo/bar", GetMimeTypeBase("foo/bar;"));
	EXPECT_EQ("foo/bar", GetMimeTypeBase("foo/bar; x=y"));
	EXPECT_EQ("foo/bar", GetMimeTypeBase("foo/bar;x=y"));
}

TEST(UriUtil, Parameters)
{
	EXPECT_TRUE(ParseMimeTypeParameters("").empty());
	EXPECT_TRUE(ParseMimeTypeParameters("foo/bar").empty());
	EXPECT_TRUE(ParseMimeTypeParameters("foo/bar;").empty());
	EXPECT_TRUE(ParseMimeTypeParameters("foo/bar;garbage").empty());
	EXPECT_TRUE(ParseMimeTypeParameters("foo/bar; garbage").empty());

	auto p = ParseMimeTypeParameters("foo/bar;a=b");
	EXPECT_FALSE(p.empty());
	EXPECT_EQ(p["a"], "b");
	EXPECT_EQ(p.size(), 1u);

	p = ParseMimeTypeParameters("foo/bar; a=b;c;d=e ; f=g ");
	EXPECT_FALSE(p.empty());
	EXPECT_EQ(p["a"], "b");
	EXPECT_EQ(p["d"], "e");
	EXPECT_EQ(p["f"], "g");
	EXPECT_EQ(p.size(), 3u);
}