2019-04-20 13:01:58 +02:00
|
|
|
/* This file is part of gitea2rss.
|
2020-10-27 12:05:50 +01:00
|
|
|
* Copyright © 2019, 2020 tastytea <tastytea@tastytea.de>
|
2019-04-20 13:01:58 +02:00
|
|
|
*
|
|
|
|
* 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, version 3.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "gitea2rss.hpp"
|
2020-10-27 12:05:50 +01:00
|
|
|
#include <catch.hpp>
|
|
|
|
#include <string>
|
2019-04-20 13:01:58 +02:00
|
|
|
|
|
|
|
using std::string;
|
2020-10-27 12:05:50 +01:00
|
|
|
using namespace gitea2rss;
|
2019-04-20 13:01:58 +02:00
|
|
|
|
2020-10-27 12:05:50 +01:00
|
|
|
SCENARIO("get_baseurl() works as expected", "[strings]")
|
2019-04-20 13:01:58 +02:00
|
|
|
{
|
2020-10-27 12:05:50 +01:00
|
|
|
WHEN("HTTPS URL")
|
2019-04-20 13:01:58 +02:00
|
|
|
{
|
2020-10-27 12:05:50 +01:00
|
|
|
const string baseurl =
|
|
|
|
get_baseurl("https://git.example.com/user/project");
|
2019-04-20 13:01:58 +02:00
|
|
|
|
2020-10-27 12:05:50 +01:00
|
|
|
THEN("The base URL is correctly returned")
|
2019-04-20 13:01:58 +02:00
|
|
|
{
|
|
|
|
REQUIRE(baseurl == "https://git.example.com");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-27 12:05:50 +01:00
|
|
|
WHEN("HTTP URL")
|
2019-04-20 13:01:58 +02:00
|
|
|
{
|
2020-10-27 12:05:50 +01:00
|
|
|
const string baseurl =
|
|
|
|
get_baseurl("http://git.example.com/user/project");
|
2019-04-20 13:01:58 +02:00
|
|
|
|
2020-10-27 12:05:50 +01:00
|
|
|
THEN("The base URL is correctly returned")
|
2019-04-20 13:01:58 +02:00
|
|
|
{
|
|
|
|
REQUIRE(baseurl == "http://git.example.com");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|