mirror of https://github.com/kiwix/libkiwix.git
86 lines
2.2 KiB
C++
86 lines
2.2 KiB
C++
/*
|
|
* Copyright 2021 Veloman Yunkan <veloman.yunkan@gmail.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* is provided AS IS, WITHOUT ANY WARRANTY; without even the implied
|
|
* warranty of MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, and
|
|
* NON-INFRINGEMENT. See the GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*
|
|
*/
|
|
|
|
#include "../include/opds_catalog.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
using namespace kiwix;
|
|
|
|
TEST(OpdsCatalog, getSearchUrl)
|
|
{
|
|
#define EXPECT_SEARCH_URL(url) EXPECT_EQ(url, getSearchUrl(f))
|
|
{
|
|
Filter f;
|
|
EXPECT_SEARCH_URL("/catalog/v2/entries");
|
|
}
|
|
{
|
|
Filter f;
|
|
f.query("abc");
|
|
EXPECT_SEARCH_URL("/catalog/v2/entries?q=abc");
|
|
}
|
|
{
|
|
Filter f;
|
|
f.query("abc def");
|
|
EXPECT_SEARCH_URL("/catalog/v2/entries?q=abc%20def");
|
|
}
|
|
{
|
|
Filter f;
|
|
f.category("ted");
|
|
EXPECT_SEARCH_URL("/catalog/v2/entries?category=ted");
|
|
}
|
|
{
|
|
Filter f;
|
|
f.lang("eng");
|
|
EXPECT_SEARCH_URL("/catalog/v2/entries?lang=eng");
|
|
}
|
|
{
|
|
Filter f;
|
|
f.name("second");
|
|
EXPECT_SEARCH_URL("/catalog/v2/entries?name=second");
|
|
}
|
|
{
|
|
Filter f;
|
|
f.acceptTags({"paper", "plastic"});
|
|
EXPECT_SEARCH_URL("/catalog/v2/entries?tag=paper;plastic");
|
|
}
|
|
{
|
|
Filter f;
|
|
f.query("abc");
|
|
f.category("ted");
|
|
EXPECT_SEARCH_URL("/catalog/v2/entries?q=abc&category=ted");
|
|
}
|
|
{
|
|
Filter f;
|
|
f.category("ted");
|
|
f.query("abc");
|
|
EXPECT_SEARCH_URL("/catalog/v2/entries?q=abc&category=ted");
|
|
}
|
|
{
|
|
Filter f;
|
|
f.query("peru");
|
|
f.category("scifi");
|
|
f.lang("html");
|
|
f.name("edsonarantesdonascimento");
|
|
f.acceptTags({"body", "script"});
|
|
EXPECT_SEARCH_URL("/catalog/v2/entries?q=peru&category=scifi&lang=html&name=edsonarantesdonascimento&tag=body;script");
|
|
}
|
|
#undef EXPECT_SEARCH_URL
|
|
}
|