forked from ucsd-cse15l-w22/markdown-parse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MarkdownParseTest.java
45 lines (37 loc) · 1.25 KB
/
MarkdownParseTest.java
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
import static org.junit.Assert.*;
import org.junit.*;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.ArrayList;
import java.util.List;
public class MarkdownParseTest {
@Test
public void addition() {
assertEquals(2, 1 + 1);
}
@Test
public void originalFile() throws IOException {
Path fileName = Path.of("test-file.md");
String contents = Files.readString(fileName);
ArrayList<String> links = MarkdownParse.getLinks(contents);
assertEquals(List.of("https://something.com", "some-page.html"), links);
}
@Test
public void fileWithImage() throws IOException {
Path fileName = Path.of("image.md");
String contents = Files.readString(fileName);
ArrayList<String> links = MarkdownParse.getLinks(contents);
assertEquals(List.of("google.com"), links);
}
@Test
public void incorrectFormat() throws IOException {
Path fileName = Path.of("incorrect.md");
String contents = Files.readString(fileName);
ArrayList<String> links = MarkdownParse.getLinks(contents);
assertEquals(List.of(), links);
}
@Testpublic void backTicks() throws IOException {
Path fileName = Path.of();
}
}