forked from exercism/go
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add .meta/gen.go to generate cases_test.go. Update test program to use generated test case array. Update example solution to pass test which includes limit as prime. For exercism#605.
- Loading branch information
Showing
4 changed files
with
102 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
package main | ||
|
||
import ( | ||
"log" | ||
"text/template" | ||
|
||
"../../../gen" | ||
) | ||
|
||
func main() { | ||
t, err := template.New("").Parse(tmpl) | ||
if err != nil { | ||
log.Fatal(err) | ||
} | ||
var j js | ||
if err := gen.Gen("sieve", &j, t); err != nil { | ||
log.Fatal(err) | ||
} | ||
} | ||
|
||
type OneCase struct { | ||
Description string | ||
Limit int | ||
Expected []int | ||
} | ||
|
||
// The JSON structure we expect to be able to unmarshal into | ||
type js struct { | ||
Cases []OneCase | ||
} | ||
|
||
// template applied to above data structure generates the Go test cases | ||
var tmpl = `package sieve | ||
{{.Header}} | ||
var testCases = []struct { | ||
description string | ||
limit int | ||
expected []int | ||
}{ | ||
{{range .J.Cases}}{ | ||
"{{.Description}}", | ||
{{.Limit}}, | ||
{{printf "%#v" .Expected}}, | ||
}, | ||
{{end}}} | ||
` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
package sieve | ||
|
||
// Source: exercism/problem-specifications | ||
// Commit: f2b2693 sieve: Fix canonical-data.json formatting | ||
// Problem Specifications Version: 1.0.0 | ||
|
||
var testCases = []struct { | ||
description string | ||
limit int | ||
expected []int | ||
}{ | ||
{ | ||
"no primes under two", | ||
1, | ||
[]int{}, | ||
}, | ||
{ | ||
"find first prime", | ||
2, | ||
[]int{2}, | ||
}, | ||
{ | ||
"find primes up to 10", | ||
10, | ||
[]int{2, 3, 5, 7}, | ||
}, | ||
{ | ||
"limit is prime", | ||
13, | ||
[]int{2, 3, 5, 7, 11, 13}, | ||
}, | ||
{ | ||
"find primes up to 1000", | ||
1000, | ||
[]int{2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199, 211, 223, 227, 229, 233, 239, 241, 251, 257, 263, 269, 271, 277, 281, 283, 293, 307, 311, 313, 317, 331, 337, 347, 349, 353, 359, 367, 373, 379, 383, 389, 397, 401, 409, 419, 421, 431, 433, 439, 443, 449, 457, 461, 463, 467, 479, 487, 491, 499, 503, 509, 521, 523, 541, 547, 557, 563, 569, 571, 577, 587, 593, 599, 601, 607, 613, 617, 619, 631, 641, 643, 647, 653, 659, 661, 673, 677, 683, 691, 701, 709, 719, 727, 733, 739, 743, 751, 757, 761, 769, 773, 787, 797, 809, 811, 821, 823, 827, 829, 839, 853, 857, 859, 863, 877, 881, 883, 887, 907, 911, 919, 929, 937, 941, 947, 953, 967, 971, 977, 983, 991, 997}, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters