blob: 046536560ead1b373301856c1f6ee96c87d0552c (
plain) (
blame)
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
|
#define ENABLE_IMPLICIT_FILEPATH_CONVERSIONS
#include "view.h"
#include <string>
#include "3rd-party/catch.hpp"
#include "controller.h"
#include "configpaths.h"
#include "cache.h"
#include "filepath.h"
using namespace newsboat;
TEST_CASE("get_filename_suggestion() normalizes filenames for saving articles", "[View]")
{
const std::string example_ru("Инженеры из MIT");
const std::string example_fr("Les mathématiques");
const std::string example_en("Comparing Visual");
ConfigPaths paths{};
Controller c(paths);
newsboat::View v(&c);
ConfigContainer cfg{};
Cache rsscache(":memory:", cfg);
v.set_config_container(&cfg);
c.set_view(&v);
// Default case is exclusively ASCII characters. Should never fail.
REQUIRE(v.get_filename_suggestion(example_en) ==
Filepath::from_locale_string("Comparing_Visual.txt"));
REQUIRE(v.get_filename_suggestion(example_ru) !=
Filepath::from_locale_string("Инженеры_из_MIT.txt"));
REQUIRE(v.get_filename_suggestion(example_fr) !=
Filepath::from_locale_string("Les_mathématiques.txt"));
cfg.toggle("restrict-filename");
REQUIRE(v.get_filename_suggestion(example_ru) ==
Filepath::from_locale_string("Инженеры из MIT.txt"));
REQUIRE(v.get_filename_suggestion(example_fr) ==
Filepath::from_locale_string("Les mathématiques.txt"));
}
|