-
Notifications
You must be signed in to change notification settings - Fork 0
/
convert_test.ts
56 lines (49 loc) · 1.14 KB
/
convert_test.ts
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
import { assertEquals } from "@std/assert";
import { convertToOPML, convertToTOML } from "../../src/libs/convert.ts";
import type { List, Lists } from "../../src/types/mod.ts";
Deno.test("Parse TOML", () => {
const feeds: Lists = {
lists: [
{
name: "list name",
feeds: [
{
title: "feed title",
text: "feed title",
xmlUrl: new URL("https://example.com/feed"),
},
],
},
],
};
const toml = `
[[lists]]
name = "list name"
[[lists.feeds]]
title = "feed title"
text = "feed title"
xmlUrl = "https://example.com/feed"
`;
assertEquals(convertToTOML(toml), feeds);
});
Deno.test("Convert Lists to OPML", () => {
const xml = `\
<?xml version="1.0" encoding="UTF-8"?>
<opml version="2.0">
<body>
<outline title="feed title" text="feed title" xmlUrl="https://example.com/feed" type="rss"/>
</body>
</opml>
`;
const list: List = {
name: "list name",
feeds: [
{
title: "feed title",
text: "feed title",
xmlUrl: new URL("https://example.com/feed"),
},
],
};
assertEquals(xml, convertToOPML(list));
});