funcTest_hasCopyright(t *testing.T) { type args struct { reader io.Reader } tests := []struct { name string args args want bool wantErr bool }{ {"正常", args{strings.NewReader(`Copyright`)}, true, false}, {"MITライセンス", args{strings.NewReader(`MIT License Copyright (c) 2020, Future Corporation 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 NONINFRINGEMENT. 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.`)}, true, false}, {"空文字", args{strings.NewReader(``)}, false, false}, {"cが小文字", args{strings.NewReader(`copyright`)}, false, false}, {"スペース有り", args{strings.NewReader(`Copy right`)}, false, false}, } for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { got, err := hasCopyright(tt.args.reader) if (err != nil) != tt.wantErr { t.Errorf("hasCopyright() error = %v, wantErr %v", err, tt.wantErr) return } if got != tt.want { t.Errorf("hasCopyright() got = %v, want %v", got, tt.want) } }) } }
$ go test === RUN Test_hasCopyright === RUN Test_hasCopyright/正常 === RUN Test_hasCopyright/MITライセンス === RUN Test_hasCopyright/空文字 === RUN Test_hasCopyright/cが小文字 === RUN Test_hasCopyright/スペース有り --- PASS: Test_hasCopyright (0.00s) --- PASS: Test_hasCopyright/正常 (0.00s) --- PASS: Test_hasCopyright/MITライセンス (0.00s) --- PASS: Test_hasCopyright/空文字 (0.00s) --- PASS: Test_hasCopyright/cが小文字 (0.00s) --- PASS: Test_hasCopyright/スペース有り (0.00s) PASS
ファイルパス関連で問題の1つとして UNIX 系 OS と Windows でパスのセパレータが異なるという問題があります。UNIX 系 OS ではセパレータが / であって Windows では \ という話です。通常、この手のスクリプトを UNIX 系 OS と Windows の両方で動作させることは少ないと思うので、問題になることはあまりないと思いますが、path/filepath パッケージを用いるとマルチプラットフォームで扱うことができスマートです。パス/filepath パッケージは対象の OS で定義されているファイルパスと互換性のある方法でファイルパスを操作できるユーティリティを提供しているパッケージです。