1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
#include "remoteapi.h"
#include <memory>
#include "3rd-party/catch.hpp"
#include "configparser.h"
using namespace newsboat;
/*
* Mock class to be able to access `user` and `pass` after running
* `get_credentials()`.
*/
class test_api : public RemoteApi {
public:
test_api(ConfigContainer* c)
: RemoteApi(c)
{
}
std::string get_user(const std::string& scope, const std::string& name)
{
return get_credentials(scope, name).user;
}
std::string get_pass(const std::string& scope, const std::string& name)
{
return get_credentials(scope, name).pass;
}
bool authenticate()
{
throw 0;
}
std::vector<TaggedFeedUrl> get_subscribed_urls()
{
throw 0;
}
void add_custom_headers(curl_slist**)
{
throw 0;
}
bool mark_all_read(const std::string&)
{
throw 0;
}
bool mark_article_read(const std::string&, bool)
{
throw 0;
}
bool update_article_flags(const std::string&,
const std::string&,
const std::string&)
{
throw 0;
}
};
TEST_CASE("get_credentials() returns the users name and password",
"[RemoteApi]")
{
ConfigContainer cfg;
ConfigParser cfgparser;
cfg.register_commands(cfgparser);
cfgparser.parse_file("data/test-config-credentials.txt");
std::unique_ptr<test_api> api(new test_api(&cfg));
REQUIRE(api->get_user("ttrss", "") == "ttrss-user");
REQUIRE(api->get_pass("ttrss", "") == "my-birthday");
REQUIRE(api->get_pass("ocnews", "") == "dadada");
REQUIRE(api->get_pass("oldreader", "") == "123456");
REQUIRE(api->get_user("miniflux", "") == "miniflux-user");
REQUIRE(api->get_pass("miniflux", "") == "securepassw0rd");
// test cases that would raise a prompt and ask for username or password
// can not be covered at the moment and would require a redesign of this
// method with a sole purpose to make it testable.
// see:
// https://github.com/akrennmair/newsbeuter/pull/503#issuecomment-282491118
//
// following two tests will show the prompt and block tests
// REQUIRE(api->get_user("newsblur", "Newsblur") == "user");
// REQUIRE(api->get_pass("newsblur", "Newsblur") == "secret");
}
TEST_CASE("read_password() returns the first line of the file", "[RemoteApi]")
{
REQUIRE(RemoteApi::read_password("/dev/null") == "");
REQUIRE_NOTHROW(RemoteApi::read_password(
"a-passwordfile-that-is-guaranteed-to-not-exist.txt"));
REQUIRE(RemoteApi::read_password(
"a-passwordfile-that-is-guaranteed-to-not-exist.txt") ==
"");
REQUIRE(RemoteApi::read_password("data/single-line-string.txt") ==
"single line with spaces");
REQUIRE(RemoteApi::read_password("data/multi-line-string.txt") ==
"string with spaces");
}
TEST_CASE("eval_password() returns the first line of command's output",
"[RemoteApi]")
{
REQUIRE(RemoteApi::eval_password("echo ''") == "");
REQUIRE(RemoteApi::eval_password("echo 'aaa'") == "aaa");
REQUIRE(RemoteApi::eval_password("echo 'aaa\naaa'") == "aaa");
REQUIRE(RemoteApi::eval_password("echo 'aaa\n\raaa'") == "aaa");
REQUIRE(RemoteApi::eval_password("echo 'aaa\raaa'") == "aaa");
REQUIRE(RemoteApi::eval_password("echo ' aaa \naaa'") == " aaa ");
REQUIRE(RemoteApi::eval_password("echo '\naaa'") == "");
REQUIRE_NOTHROW(RemoteApi::eval_password(
"a-program-that-is-guaranteed-to-not-exists"));
REQUIRE(RemoteApi::eval_password(
"a-program-that-is-guaranteed-to-not-exists") == "");
REQUIRE_NOTHROW(
RemoteApi::eval_password("printf 'string with no newline'"));
REQUIRE(RemoteApi::eval_password("printf 'string with no newline'") ==
"string with no newline");
REQUIRE(RemoteApi::eval_password("echo 'a'; exit 1;") == "a");
REQUIRE_NOTHROW(RemoteApi::eval_password("echo 'a'; exit 1;"));
REQUIRE(RemoteApi::eval_password("(>&2 echo 'b'); echo 'a'") == "a");
// test cases that would require user input can not be covered at the
// moment and would require a redesign of this method with a sole
// purpose to make it testable. see:
// https://github.com/akrennmair/newsbeuter/pull/503#issuecomment-282491118
//
// following test will wait for user input and block tests
// REQUIRE(RemoteApi->eval_password("read password") == "");
}
|