-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkday.sh
executable file
·139 lines (105 loc) · 2.9 KB
/
mkday.sh
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
#!/bin/bash
if [ -z "$1" ]
then
echo "No day number given"
exit 1
fi
day=$1
export day
mkdir -p "src/main/kotlin/days/day$day"
mkdir -p "src/test/kotlin/days/day$day"
touch "src/main/resources/puzzleInputs/day$day.txt"
cat << EOF > "src/main/kotlin/days/day$day/Day$day.kt"
package days.day$day
import days.Day
import util.PuzzleInputReader
@Suppress("unused")
object Day$day : Day {
override fun run() {
val rawInput = PuzzleInputReader("puzzleInputs/day$day.txt").readFile()
val puzzleInput = PuzzleInputParser.parse(rawInput)
println("Part 1")
println(Part1.solve(puzzleInput))
println("Part 2")
println(Part2.solve(puzzleInput))
}
}
EOF
cat << EOF > "src/main/kotlin/days/day$day/Part1.kt"
package days.day$day
object Part1 {
fun solve(puzzleInput: Any): Any {
TODO()
}
}
EOF
cat << EOF > "src/main/kotlin/days/day$day/Part2.kt"
package days.day$day
object Part2 {
fun solve(puzzleInput: Any): Any {
TODO()
}
}
EOF
cat << EOF > "src/main/kotlin/days/day$day/PuzzleInputParser.kt"
package days.day$day
object PuzzleInputParser {
fun parse(puzzleInput: String): Any {
TODO()
}
}
EOF
cat << EOF > "src/test/kotlin/days/day$day/Day${day}Spec.kt"
package days.day$day
import org.jetbrains.spek.api.Spek
import org.jetbrains.spek.api.dsl.describe
import org.jetbrains.spek.api.dsl.given
import org.jetbrains.spek.api.dsl.it
import org.jetbrains.spek.api.dsl.xdescribe
import org.junit.platform.runner.JUnitPlatform
import org.junit.runner.RunWith
import kotlin.test.assertEquals
@RunWith(JUnitPlatform::class)
object Day${day}Spec : Spek({
given("the example input") {
val rawInput = ""
val exampleInput = PuzzleInputParser.parse(rawInput)
describe("Part 1") {
describe("solve") {
it("works for the example input") {
assertEquals(0, Part1.solve(exampleInput))
}
}
}
xdescribe("Part 2") {
describe("solve") {
it("works for the example input") {
assertEquals(0, Part2.solve(exampleInput))
}
}
}
}
})
EOF
cat << EOF > "src/test/kotlin/days/day$day/PuzzleInputParserSpec.kt"
package days.day$day
import org.jetbrains.spek.api.Spek
import org.jetbrains.spek.api.dsl.describe
import org.jetbrains.spek.api.dsl.given
import org.jetbrains.spek.api.dsl.it
import org.junit.platform.runner.JUnitPlatform
import org.junit.runner.RunWith
import kotlin.test.assertEquals
@RunWith(JUnitPlatform::class)
class PuzzleInputParserSpec : Spek({
describe("parse") {
given("the example input") {
val exampleInput = ""
it("creates a list of instructions") {
val expected = Any()
assertEquals(expected, PuzzleInputParser.parse(exampleInput))
}
}
}
})
EOF