2019-04-15 01:39:28 +02:00
|
|
|
/* This file is part of mastodon-cpp.
|
|
|
|
* Copyright © 2019 tastytea <tastytea@tastytea.de>
|
|
|
|
*
|
|
|
|
* 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 <exception>
|
|
|
|
#include <string>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <catch.hpp>
|
|
|
|
#include "mastodon-cpp.hpp"
|
|
|
|
#include "easy/easy.hpp"
|
|
|
|
#include "easy/entities/account.hpp"
|
|
|
|
|
|
|
|
using namespace Mastodon;
|
|
|
|
|
|
|
|
SCENARIO ("/api/v1/accounts/:id/following can be called successfully",
|
|
|
|
"[api][mastodon][pleroma][glitch-soc]")
|
|
|
|
{
|
2019-04-15 07:14:54 +02:00
|
|
|
const char *env_instance = std::getenv("MASTODON_CPP_INSTANCE");
|
|
|
|
const string instance = (env_instance ? env_instance : "likeable.space");
|
|
|
|
const char *access_token = std::getenv("MASTODON_CPP_ACCESS_TOKEN");
|
|
|
|
const char *env_user_id = std::getenv("MASTODON_CPP_USER_ID");
|
|
|
|
const string user_id = (env_user_id ? env_user_id : "9hnrrVPriLiLVAhfVo");
|
2019-04-15 01:39:28 +02:00
|
|
|
|
2019-04-15 07:14:54 +02:00
|
|
|
GIVEN ("instance = " + instance + ", user ID = " + user_id)
|
|
|
|
{
|
|
|
|
Mastodon::Easy::API masto(instance, access_token);
|
2019-04-15 01:39:28 +02:00
|
|
|
return_call ret;
|
2019-04-15 07:14:54 +02:00
|
|
|
Easy::Account account;
|
2019-04-15 01:39:28 +02:00
|
|
|
bool exception = false;
|
|
|
|
|
|
|
|
REQUIRE (access_token != nullptr);
|
|
|
|
|
2019-04-15 07:14:54 +02:00
|
|
|
WHEN ("/api/v1/accounts/" + user_id + "/following is called")
|
2019-04-15 01:39:28 +02:00
|
|
|
{
|
2019-04-15 07:14:54 +02:00
|
|
|
try
|
2019-04-15 01:39:28 +02:00
|
|
|
{
|
2019-04-15 07:14:54 +02:00
|
|
|
ret = masto.get(API::v1::accounts_id_following,
|
|
|
|
{
|
|
|
|
{ "id", { user_id } },
|
|
|
|
{ "limit", { "5" } }
|
|
|
|
});
|
|
|
|
if (ret.answer == "[]")
|
2019-04-15 01:39:28 +02:00
|
|
|
{
|
2019-04-15 07:14:54 +02:00
|
|
|
WARN("No followed found.");
|
2019-04-15 01:39:28 +02:00
|
|
|
}
|
2019-04-15 07:14:54 +02:00
|
|
|
else
|
2019-04-15 01:39:28 +02:00
|
|
|
{
|
2019-04-15 07:14:54 +02:00
|
|
|
account.from_string
|
|
|
|
(Easy::json_array_to_vector(ret.answer).front());
|
2019-04-15 01:39:28 +02:00
|
|
|
}
|
|
|
|
}
|
2019-04-15 07:14:54 +02:00
|
|
|
catch (const std::exception &e)
|
|
|
|
{
|
|
|
|
exception = true;
|
|
|
|
WARN(e.what());
|
|
|
|
}
|
2019-04-15 01:39:28 +02:00
|
|
|
|
2019-04-15 07:14:54 +02:00
|
|
|
THEN("No exception is thrown")
|
|
|
|
AND_THEN ("No errors are returned")
|
|
|
|
AND_THEN ("Answer is valid")
|
|
|
|
AND_THEN ("The answer makes sense")
|
2019-04-15 01:39:28 +02:00
|
|
|
{
|
2019-04-15 07:14:54 +02:00
|
|
|
REQUIRE_FALSE(exception);
|
|
|
|
|
|
|
|
REQUIRE(ret.error_code == 0);
|
|
|
|
REQUIRE(ret.http_error_code == 200);
|
|
|
|
|
|
|
|
REQUIRE(account.valid());
|
|
|
|
|
|
|
|
REQUIRE(account.username() != "");
|
2019-04-15 01:39:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|