From 73b6462d935bfd26ecb31e8196493987d22b6eee Mon Sep 17 00:00:00 2001 From: tastytea Date: Mon, 15 Apr 2019 04:29:54 +0200 Subject: [PATCH] Added tests for API::v1::accounts_relationships. --- README.md | 2 +- tests/test_api_v1_accounts_id_statuses.cpp | 2 +- tests/test_api_v1_accounts_relationships.cpp | 135 +++++++++++++++++++ 3 files changed, 137 insertions(+), 2 deletions(-) create mode 100644 tests/test_api_v1_accounts_relationships.cpp diff --git a/README.md b/README.md index ade55ea..cbe7094 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ **mastodon-cpp** is a C++ wrapper for the Mastodon API. You submit an API call -and get the raw JSON or easy to use abstractions, just as you like. +and get the raw JSON or easy to use abstractions. **The ABI will be unstable in versions < 1.0.0** diff --git a/tests/test_api_v1_accounts_id_statuses.cpp b/tests/test_api_v1_accounts_id_statuses.cpp index 336be7a..4e852f8 100644 --- a/tests/test_api_v1_accounts_id_statuses.cpp +++ b/tests/test_api_v1_accounts_id_statuses.cpp @@ -101,7 +101,7 @@ SCENARIO ("/api/v1/accounts/:id/statuses can be called successfully", }); if (ret.answer == "[]") { - WARN("No followed found."); + WARN("No statuses found."); } else { diff --git a/tests/test_api_v1_accounts_relationships.cpp b/tests/test_api_v1_accounts_relationships.cpp new file mode 100644 index 0000000..ed995ca --- /dev/null +++ b/tests/test_api_v1_accounts_relationships.cpp @@ -0,0 +1,135 @@ +/* This file is part of mastodon-cpp. + * Copyright © 2019 tastytea + * + * 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 . + */ + +#include +#include +#include +#include +#include "mastodon-cpp.hpp" +#include "easy/easy.hpp" +#include "easy/entities/relationship.hpp" + +using namespace Mastodon; + +SCENARIO ("/api/v1/accounts/relationships can be called successfully", + "[api][mastodon][pleroma][glitch-soc]") +{ + GIVEN ("instance, access token, user id and return_call") + { + 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"); + + return_call ret; + bool exception = false; + bool id_found = false; + + REQUIRE (access_token != nullptr); + + GIVEN ("Mastodon::API") + { + Mastodon::API masto(instance, access_token); + + WHEN ("/api/v1/accounts/relationships is called") + { + try + { + ret = masto.get(API::v1::accounts_relationships, + { + { "id", { user_id } }, + }); + if (ret.answer == "[]") + { + WARN("No relationships found."); + } + id_found = + ret.answer.find("\"id\":\"") + != std::string::npos; + } + catch (const std::exception &e) + { + exception = true; + WARN(e.what()); + } + THEN("No exception is thrown") + { + REQUIRE_FALSE(exception); + } + THEN ("No errors are returned") + { + REQUIRE(ret.error_code == 0); + REQUIRE(ret.http_error_code == 200); + } + THEN ("The answer makes sense") + { + REQUIRE(id_found); + } + } + } + + GIVEN ("Mastodon::Easy::API") + { + Mastodon::Easy::API masto(instance, access_token); + Easy::Relationship relationship; + + WHEN ("/api/v1/accounts/relationships is called") + { + try + { + ret = masto.get(API::v1::accounts_relationships, + { + { "id", { user_id } }, + }); + if (ret.answer == "[]") + { + WARN("No relationships found."); + } + else + { + reloationship.from_string + (Easy::json_array_to_vector(ret.answer).front()); + } + } + catch (const std::exception &e) + { + exception = true; + WARN(e.what()); + } + THEN("No exception is thrown") + { + REQUIRE_FALSE(exception); + } + THEN ("No errors are returned") + { + REQUIRE(ret.error_code == 0); + REQUIRE(ret.http_error_code == 200); + } + THEN ("Answer is valid") + { + REQUIRE(relationship.valid()); + } + THEN ("The answer makes sense") + { + REQUIRE(relationship.id() != ""); + } + } + } + } +}