golangでIOへのテストを行う | おおたの物置
まとめ fmt.Print等にちゃんと出力されるかテストしたい 結論としては直接は無理 io.Writerを利用するように変えることで簡単にテスト可能 渡されたio.Writerに書き込むようにする ...
http://ota42y.com/blog/2015/04/01/go-io-test/
golang には Example Test という機能があり、テスト関数名に Example
のプレフィックスを付ける事で実行結果として出力される標準出力のテストを行う事が出来ます。
期待する結果はこの関数の中にコメントとして書くことが出来ます。
go-pipeline/example_test.go at master - mattn/go-pipeline-· GitHub
https://github.com/mattn/go-pipeline/blob/master/example_test.go
このまま go test
として使えるので、CI にもそもままのコードが使えます。
ところで golang のテストで稀にハマるのが「map のイテレートが順不同である」という件。ある map を加工した結果がある期待値と同じかどうかを確認する為に reflect を使うとか面倒ですよね。そこで go1.7 には Unordered Output in Example という機能が入る予定です。
testing: support unordered output in Examples. · Issue #10149 · golang/go · GitHub
Other use cases are like the one I am specifically working on now. A client I work on makes calls to...
https://github.com/golang/go/issues/10149
都合上、issue がまだ閉じられていませんが、コードはマージ済みなので tip で使う事が出来ます。
func ExampleShuffle() {
x := []int{1, 2, 3, 4, 5}
shuffle.ShuffleInt(x)
for index, value := range x {
fmt.Printf("index[%d] = %d\n", index, value)
}
// Unordered output:
// 4
// 2
// 5
// 1
// 3
}
Output
の代わりに Unordered output
を指定する事で、結果の順が不同であっても OK となります。気軽に map の検査が行える様になりました。