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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
|
#define ENABLE_IMPLICIT_FILEPATH_CONVERSIONS
#include "opmlurlreader.h"
#include <map>
#include <unistd.h>
#include "3rd-party/catch.hpp"
#include "utils.h"
using namespace newsboat;
TEST_CASE("OPML URL reader gets the path to input file from \"opml-url\" "
"setting", "[OpmlUrlReader]")
{
ConfigContainer cfg;
OpmlUrlReader reader(cfg);
const std::string setting("opml-url");
const std::string url1("https://example.com/feeds.opml");
cfg.set_configvalue(setting, url1);
REQUIRE(reader.get_source() == url1);
const std::string url2("http://www.example.com/~henry/subscriptions.xml");
cfg.set_configvalue(setting, url2);
REQUIRE(reader.get_source() == url2);
}
TEST_CASE("OpmlUrlReader::reload() reads URLs and tags from an OPML file",
"[OpmlUrlReader]")
{
ConfigContainer cfg;
cfg.set_configvalue(
"opml-url",
"file://" + utils::getcwd().to_locale_string() + "/data/example.opml");
OpmlUrlReader reader(cfg);
REQUIRE_NOTHROW(reader.reload());
using URL = std::string;
using Tag = std::string;
using Tags = std::vector<Tag>;
const std::map<URL, Tags> expected {
{"https://example.com/feed.xml", {}},
{"https://example.com/mirrors/distrowatch.rss", {}},
{"https://example.com/feed.atom", {}},
{"https://example.com/feed.rss09", {}},
{"https://blogs.example.com/~john/posts.rss", {"Blogs"}},
{"https://fred.example.com/writing/index.php?type=rss", {"eloquent"}},
{"https://blogs.example.com/~mike/.rss", {"Blogs/friends"}},
};
REQUIRE(reader.get_urls().size() == expected.size());
for (const auto& url : reader.get_urls()) {
INFO("url = " << url);
const auto e = expected.find(url);
REQUIRE(e != expected.cend());
const auto tags = reader.get_tags(url);
REQUIRE(tags == e->second);
}
std::set<Tag> expected_tags;
for (const auto& entry : expected) {
expected_tags.insert(
entry.second.cbegin(),
entry.second.cend());
}
std::set<Tag> tags;
const auto alltags = reader.get_alltags();
tags.insert(alltags.cbegin(), alltags.cend());
REQUIRE(tags == expected_tags);
}
TEST_CASE("OpmlUrlReader::reload() loads URLs from multiple sources",
"[OpmlUrlReader]")
{
const std::string cwd = utils::getcwd();
ConfigContainer cfg;
cfg.set_configvalue("opml-url",
"file://" + cwd + "/data/example.opml"
+ " "
+ "file://" + cwd + "/data/example2.opml");
OpmlUrlReader reader(cfg);
REQUIRE_NOTHROW(reader.reload());
using URL = std::string;
using Tag = std::string;
using Tags = std::vector<Tag>;
const std::map<URL, Tags> expected {
{"https://example.com/feed.xml", {}},
{"https://example.com/mirrors/distrowatch.rss", {}},
{"https://example.com/feed.atom", {}},
{"https://example.com/feed.rss09", {}},
{"https://blogs.example.com/~john/posts.rss", {"Blogs"}},
{"https://fred.example.com/writing/index.php?type=rss", {"eloquent"}},
{"https://blogs.example.com/~mike/.rss", {"Blogs/friends"}},
{"https://one.example.com/file.xml", {}},
{"https://to.example.com/elves/tidings.rss", {}},
{"https://third.example.com/~of/internet.rss", {"Rant boards/humans"}},
{"https://four.example.com/~john/posts.rss", {"Rant boards"}},
{"https://example.com/five.atom", {}},
{"https://freddie.example.com/ritin/index.pl?format=rss", {"eloquent"}},
{"https://example.com/feed2.rss09", {}},
};
REQUIRE(reader.get_urls().size() == expected.size());
for (const auto& url : reader.get_urls()) {
INFO("url = " << url);
const auto e = expected.find(url);
REQUIRE(e != expected.cend());
const auto tags = reader.get_tags(url);
REQUIRE(tags == e->second);
}
std::set<Tag> expected_tags;
for (const auto& entry : expected) {
expected_tags.insert(
entry.second.cbegin(),
entry.second.cend());
}
std::set<Tag> tags;
const auto alltags = reader.get_alltags();
tags.insert(alltags.cbegin(), alltags.cend());
REQUIRE(tags == expected_tags);
}
TEST_CASE("OpmlUrlReader::reload() skips things that can't be parsed",
"[OpmlUrlReader]")
{
const std::string cwd = utils::getcwd();
ConfigContainer cfg;
cfg.set_configvalue("opml-url",
"file://" + cwd + "/data/example.opml"
+ " "
+ "file:///dev/null" // empty file
+ " "
+ "file://" + cwd + "/data/guaranteed-not-to-exist.xml"
+ " "
+ "file://" + cwd + "/data/example2.opml");
OpmlUrlReader reader(cfg);
REQUIRE_NOTHROW(reader.reload());
using URL = std::string;
using Tag = std::string;
using Tags = std::vector<Tag>;
const std::map<URL, Tags> expected {
{"https://example.com/feed.xml", {}},
{"https://example.com/mirrors/distrowatch.rss", {}},
{"https://example.com/feed.atom", {}},
{"https://example.com/feed.rss09", {}},
{"https://blogs.example.com/~john/posts.rss", {"Blogs"}},
{"https://fred.example.com/writing/index.php?type=rss", {"eloquent"}},
{"https://blogs.example.com/~mike/.rss", {"Blogs/friends"}},
{"https://one.example.com/file.xml", {}},
{"https://to.example.com/elves/tidings.rss", {}},
{"https://third.example.com/~of/internet.rss", {"Rant boards/humans"}},
{"https://four.example.com/~john/posts.rss", {"Rant boards"}},
{"https://example.com/five.atom", {}},
{"https://freddie.example.com/ritin/index.pl?format=rss", {"eloquent"}},
{"https://example.com/feed2.rss09", {}},
};
REQUIRE(reader.get_urls().size() == expected.size());
for (const auto& url : reader.get_urls()) {
INFO("url = " << url);
const auto e = expected.find(url);
REQUIRE(e != expected.cend());
const auto tags = reader.get_tags(url);
REQUIRE(tags == e->second);
}
std::set<Tag> expected_tags;
for (const auto& entry : expected) {
expected_tags.insert(
entry.second.cbegin(),
entry.second.cend());
}
std::set<Tag> tags;
const auto alltags = reader.get_alltags();
tags.insert(alltags.cbegin(), alltags.cend());
REQUIRE(tags == expected_tags);
}
|