From 3705ae8d7880baa68c581ec0bac4961fc883348b Mon Sep 17 00:00:00 2001 From: tastytea Date: Sat, 27 Apr 2019 22:33:01 +0200 Subject: [PATCH] Added tests for API::v1::media_id. --- README.md | 3 +- tests/environment_variables.hpp | 2 + tests/main.cpp | 2 + tests/test_api_v1_media_id.cpp | 69 +++++++++++++++++++++++++++++++++ 4 files changed, 75 insertions(+), 1 deletion(-) create mode 100644 tests/test_api_v1_media_id.cpp diff --git a/README.md b/README.md index 3f8598b..07277dc 100644 --- a/README.md +++ b/README.md @@ -247,7 +247,8 @@ You can select the instance to use with `MASTODON_CPP_INSTANCE`, the default is default is *9hnrrVPriLiLVAhfVo*. You can select the status ID with `MASTODON_CPP_STATUS_ID`, the default is *9hwnuJMq3eTdO4s1PU*. You can select the filter ID with `MASTODON_CPP_FILTER_ID`. You can select the list ID with -`MASTODON_CPP_LIST_ID`, the default is *2*. +`MASTODON_CPP_LIST_ID`, the default is *2*. You can select the media ID with +`MASTODON_CPP_MEDIA_ID`, the default is *2127742613*. Requirements for the test-user: diff --git a/tests/environment_variables.hpp b/tests/environment_variables.hpp index 0f9e22c..341a6f0 100644 --- a/tests/environment_variables.hpp +++ b/tests/environment_variables.hpp @@ -33,5 +33,7 @@ extern const char *env_filter_id; extern const string filter_id; extern const char *env_list_id; extern const string list_id; +extern const char *env_media_id; +extern const string media_id; #endif // MASTODON_CPP_TEST_ENVIRONMENT_VARIABLES_HPP diff --git a/tests/main.cpp b/tests/main.cpp index d342ad1..022a12d 100644 --- a/tests/main.cpp +++ b/tests/main.cpp @@ -35,3 +35,5 @@ const char *env_filter_id = getenv("MASTODON_CPP_FILTER_ID"); const string filter_id = (env_filter_id ? env_filter_id : ""); const char *env_list_id = getenv("MASTODON_CPP_LIST_ID"); const string list_id = (env_list_id ? env_list_id : "2"); +const char *env_media_id = getenv("MASTODON_CPP_MEDIA_ID"); +const string media_id = (env_media_id ? env_media_id : "2127742613"); diff --git a/tests/test_api_v1_media_id.cpp b/tests/test_api_v1_media_id.cpp new file mode 100644 index 0000000..d065606 --- /dev/null +++ b/tests/test_api_v1_media_id.cpp @@ -0,0 +1,69 @@ +/* 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 "mastodon-cpp.hpp" +#include "easy/easy.hpp" +#include "easy/entities/attachment.hpp" +#include "environment_variables.hpp" + +using namespace Mastodon; + +// We use a media attachment that is attached to a status, therefore we get an +// error. +SCENARIO ("/api/v1/media/:id can be called successfully", + "[api][mastodon][pleroma][glitch-soc]") +{ + REQUIRE (access_token != nullptr); + + GIVEN ("instance = " + instance + ", media ID = " + media_id) + { + Mastodon::Easy::API masto(instance, access_token); + return_call ret; + Easy::Attachment attachment; + bool exception = false; + + WHEN ("PUT /api/v1/media/" + media_id + " is called") + { + try + { + ret = masto.put(API::v1::media_id, + { + { "id", { media_id }}, + { "description", { "Test description." }} + }); + attachment.from_string(ret.answer); + } + catch (const std::exception &e) + { + exception = true; + WARN(e.what()); + } + + THEN("No exception is thrown") + AND_THEN ("No unexpected errors are returned") + { + REQUIRE_FALSE(exception); + + REQUIRE(ret.error_code == 111); + REQUIRE(ret.http_error_code == 500); + } + } + } +} +