-
Notifications
You must be signed in to change notification settings - Fork 2
/
scaffold
executable file
·153 lines (115 loc) · 2.67 KB
/
scaffold
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
#!/bin/bash
root=$(git rev-parse --show-toplevel)
if [[ -z "$1" ]]; then
echo "Error: Missing destination"
exit 1
fi
dest=$root/$1
name=$(basename "$dest")
if [[ -d "$dest" ]]; then
echo "Error: Destination $dest already exists"
exit 1
fi
# Folders
mkdir -p "$dest/Sources/${name}"
mkdir -p "$dest/Tests/${name}Tests"
# README.md
cat << EOM > "$dest/README.md"
$(echo "${name}" | "$root/prettify")
=======
Difficulty: ?
Problem Statement
-----------------
?
Further Instructions
--------------------
To start working on this challenge open [Challenge.swift] and uncomment the code
skeleton.
To run unit tests that validate your code, uncomment the body of the test method
in [ChallengeTests.swift] and hit \`CMD + U\` in Xcode. On Linux you can run the
tests by executing \`swift test\` in the package directory.
To view selected solutions open [Solutions.swift].
[Challenge.swift]: Sources/${name}/Challenge.swift
[ChallengeTests.swift]: Tests/${name}Tests/ChallengeTests.swift
[Solutions.swift]: Sources/${name}/Solutions.swift
EOM
# Package.swift
cat << EOM > "$dest/Package.swift"
// swift-tools-version:5.1
import PackageDescription
let package = Package(
name: "${name}",
products: [
.library(
name: "${name}",
targets: ["${name}"])
],
dependencies: [],
targets: [
.target(
name: "${name}",
dependencies: []),
.testTarget(
name: "${name}Tests",
dependencies: ["${name}"])
]
)
EOM
# Challenge.swift
cat << EOM > "$dest/Sources/${name}/Challenge.swift"
import Foundation
//func solution() {
// <#T##Insert code#>
//}
EOM
# Solutions.swift
cat << EOM > "$dest/Sources/${name}/Solutions.swift"
import Foundation
// MARK: - General Notes
// ?
// MARK: - ?
// ?
func solution_?() -> ? {
?
}
EOM
# ChallengeTests.swift
cat << EOM > "$dest/Tests/${name}Tests/ChallengeTests.swift"
import Foundation
import XCTest
@testable import ${name}
final class ChallengeTests: XCTestCase {
static var allTests = [
("test", test)
]
func test() {
// runTest(solution)
}
}
func runTest(_ method: () -> Void) {
XCTAssert(?)
}
EOM
# SolutionTests.swift
cat << EOM > "$dest/Tests/${name}Tests/SolutionTests.swift"
import Foundation
import XCTest
@testable import ${name}
final class SolutionTests: XCTestCase {
static var allTests = [
("test_?", test_?)
]
func test_?() {
runTest(solution_?)
}
}
EOM
# LinuxMain.swift
cat << EOM > "$dest/Tests/LinuxMain.swift"
import XCTest
@testable import ${name}Tests
XCTMain([
testCase(ChallengeTests.allTests),
testCase(SolutionTests.allTests)
])
EOM