-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This draft adds a test file designed to flag the unit tests, the race detector, and the linter, in order to ensure that they are all operating correctly.
- Loading branch information
Showing
4 changed files
with
58 additions
and
1 deletion.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package wsrpc | ||
|
||
import ( | ||
"errors" | ||
"os" | ||
"testing" | ||
) | ||
|
||
func FailLintOutOfTestFile(t *testing.T) { | ||
const UnusedVar = 1 // lint should complain for unused variable | ||
const ALL_CAPS = 10 // should be camel cased | ||
err := os.ErrNotExist | ||
if err == os.ErrNotExist { // should use errors.Is | ||
err := errors.New("fake error") // shadowed variable | ||
t.Log(err) | ||
} | ||
} |
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,39 @@ | ||
package wsrpc | ||
|
||
import ( | ||
"errors" | ||
"os" | ||
"sync" | ||
"testing" | ||
) | ||
|
||
// func TestFail(t *testing.T) { | ||
// if testing.Short() { | ||
// t.Skip() | ||
// } | ||
// t.Fatal("fake failure") | ||
// } | ||
|
||
func TestRace(t *testing.T) { | ||
var v int | ||
var wg sync.WaitGroup | ||
wg.Add(100) | ||
for i := 0; i < 100; i++ { | ||
go func() { | ||
defer wg.Done() | ||
v++ | ||
v-- | ||
}() | ||
} | ||
wg.Wait() | ||
t.Log(v) | ||
} | ||
|
||
func TestLint(t *testing.T) { | ||
const ALL_CAPS = 10 // should be AllCaps | ||
err := os.ErrNotExist | ||
if err == os.ErrNotExist { // should use errors.Is | ||
err := errors.New("fake error") // shadowed variable | ||
t.Log(err) | ||
} | ||
} |