-
Notifications
You must be signed in to change notification settings - Fork 146
/
Copy pathUnphiMojoTest.java
99 lines (96 loc) · 3.84 KB
/
UnphiMojoTest.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
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
/*
* The MIT License (MIT)
*
* Copyright (c) 2016-2023 Objectionary.com
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package org.eolang.maven;
import com.jcabi.xml.XML;
import com.jcabi.xml.XMLDocument;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import org.cactoos.list.ListOf;
import org.cactoos.text.TextOf;
import org.eolang.jucs.ClasspathSource;
import org.eolang.maven.util.HmBase;
import org.hamcrest.MatcherAssert;
import org.hamcrest.Matchers;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.io.TempDir;
import org.junit.jupiter.params.ParameterizedTest;
import org.yaml.snakeyaml.Yaml;
/**
* Test cases for {@link UnphiMojo}.
* @since 0.34.0
* @todo #2642:30min Create test packs for {@link UnphiMojo}. UnphiMojo seems to work correctly.
* We need to create yaml packs and enable {@link UnphiMojoTest#checksUnphiPacks(String, Path)}
* and make sure all of them are passed. Don't forget to remove the puzzle.
*/
class UnphiMojoTest {
@Test
void createsFile(@TempDir final Path temp) throws Exception {
new HmBase(temp).save(
"{std ↦ Φ.org.eolang.io.stdout, y ↦ Φ.org.eolang.x}",
Paths.get("target/phi/std.phi")
);
MatcherAssert.assertThat(
String.format(
"There should be file with .%s extension after parsing phi to XMIR, but there isn't",
TranspileMojo.EXT
),
new FakeMaven(temp)
.execute(UnphiMojo.class)
.result(),
Matchers.hasKey(String.format("target/%s/std.xmir", ParseMojo.DIR))
);
}
@ParameterizedTest
@Disabled
@ClasspathSource(value = "org/eolang/maven/unphi", glob = "**.yaml")
void checksUnphiPacks(final String pack, @TempDir final Path temp) throws Exception {
final Map<String, Object> map = new Yaml().load(pack);
final String phi = map.get("phi").toString();
new HmBase(temp).save(phi, Paths.get("target/phi/main.phi"));
final List<String> failures = new ListOf<>();
new FakeMaven(temp).execute(UnphiMojo.class);
for (final String xpath : (Iterable<String>) map.get("tests")) {
final List<XML> nodes = new XMLDocument(
new TextOf(
Paths.get(String.format("target/%s/main.xmir", ParseMojo.DIR))
).asString()
).nodes(xpath);
if (nodes.isEmpty()) {
failures.add(xpath);
}
}
MatcherAssert.assertThat(
String.format(
"Failed to parse phi expression: %s; failed tests: %s",
phi, Arrays.toString(failures.toArray())
),
failures,
Matchers.empty()
);
}
}