feat(tests): add Parallelization where possible (#1823)

* feat(tests): add Parallelization where possible
This commit is contained in:
Kyle Sanderson 2024-11-23 06:16:09 -08:00 committed by GitHub
parent c0882aff84
commit 4cc0f9cc83
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 53 additions and 2 deletions

View file

@ -10,6 +10,7 @@ import (
)
func TestDownloadClient_qbitBuildLegacyHost(t *testing.T) {
t.Parallel()
type fields struct {
ID int32
Name string

View file

@ -10,6 +10,7 @@ import (
)
func TestFilter_CheckFilter(t *testing.T) {
t.Parallel()
type args struct {
filter Filter
rejectionReasons *RejectionReasons
@ -1443,6 +1444,7 @@ func TestFilter_CheckFilter(t *testing.T) {
}
func TestFilter_CheckFilter1(t *testing.T) {
t.Parallel()
type fields Filter
type args struct {
r *Release
@ -2069,6 +2071,7 @@ func TestFilter_CheckFilter1(t *testing.T) {
}
func Test_containsMatch(t *testing.T) {
t.Parallel()
type args struct {
tags []string
filters []string
@ -2092,6 +2095,7 @@ func Test_containsMatch(t *testing.T) {
}
func Test_containsAllMatch(t *testing.T) {
t.Parallel()
type args struct {
tags []string
filters []string
@ -2117,6 +2121,7 @@ func Test_containsAllMatch(t *testing.T) {
}
func Test_contains(t *testing.T) {
t.Parallel()
type args struct {
tag string
filter string
@ -2144,6 +2149,7 @@ func Test_contains(t *testing.T) {
}
func Test_containsSlice(t *testing.T) {
t.Parallel()
type args struct {
tag string
filters []string
@ -2166,6 +2172,7 @@ func Test_containsSlice(t *testing.T) {
}
func Test_containsAny(t *testing.T) {
t.Parallel()
type args struct {
tags []string
filter string
@ -2187,6 +2194,7 @@ func Test_containsAny(t *testing.T) {
}
func Test_containsAll(t *testing.T) {
t.Parallel()
type args struct {
tags []string
filter string
@ -2212,6 +2220,7 @@ func Test_containsAll(t *testing.T) {
}
func Test_sliceContainsSlice(t *testing.T) {
t.Parallel()
type args struct {
tags []string
filters []string
@ -2235,6 +2244,7 @@ func Test_sliceContainsSlice(t *testing.T) {
}
func Test_containsIntStrings(t *testing.T) {
t.Parallel()
type args struct {
value int
filterList string
@ -2262,6 +2272,7 @@ func Test_containsIntStrings(t *testing.T) {
}
func Test_matchRegex(t *testing.T) {
t.Parallel()
type args struct {
tag string
filter string
@ -2289,6 +2300,7 @@ func Test_matchRegex(t *testing.T) {
}
func Test_validation(t *testing.T) {
t.Parallel()
tests := []struct {
name string
filter Filter
@ -2308,6 +2320,7 @@ func Test_validation(t *testing.T) {
}
func Test_checkSizeFilter(t *testing.T) {
t.Parallel()
tests := []struct {
name string
filter Filter
@ -2338,6 +2351,7 @@ func Test_checkSizeFilter(t *testing.T) {
}
func Test_containsFuzzy(t *testing.T) {
t.Parallel()
type args struct {
tag string
filter string

View file

@ -10,6 +10,7 @@ import (
)
func TestIndexerIRCParseMatch_ParseUrls(t *testing.T) {
t.Parallel()
type fields struct {
TorrentURL string
TorrentName string
@ -165,6 +166,7 @@ func TestIndexerIRCParseMatch_ParseUrls(t *testing.T) {
}
func TestIndexerIRCParseMatch_ParseTorrentName(t *testing.T) {
t.Parallel()
type fields struct {
TorrentURL string
TorrentName string
@ -238,6 +240,7 @@ func TestIndexerIRCParseMatch_ParseTorrentName(t *testing.T) {
}
func TestIRCParserGazelleGames_Parse(t *testing.T) {
t.Parallel()
type args struct {
rls *Release
vars map[string]string
@ -316,6 +319,7 @@ func TestIRCParserGazelleGames_Parse(t *testing.T) {
}
func TestIRCParserOrpheus_Parse(t *testing.T) {
t.Parallel()
type args struct {
rls *Release
vars map[string]string

View file

@ -12,6 +12,7 @@ import (
)
func TestMacros_Parse(t *testing.T) {
t.Parallel()
currentTime := time.Now()
type fields struct {

View file

@ -10,6 +10,7 @@ import (
)
func TestRejectionReasons_String(t *testing.T) {
t.Parallel()
type fields struct {
data []Rejection
}
@ -55,6 +56,7 @@ func TestRejectionReasons_String(t *testing.T) {
}
func TestRejectionReasons_StringTruncated(t *testing.T) {
t.Parallel()
type fields struct {
data []Rejection
}

View file

@ -10,6 +10,7 @@ import (
)
func TestParseReleaseTags(t *testing.T) {
t.Parallel()
type args struct {
tags []string
}
@ -29,6 +30,7 @@ func TestParseReleaseTags(t *testing.T) {
}
func TestParseReleaseTagString(t *testing.T) {
t.Parallel()
type args struct {
tags string
}
@ -64,6 +66,7 @@ func TestParseReleaseTagString(t *testing.T) {
}
func Test_cleanReleaseTags(t *testing.T) {
t.Parallel()
type args struct {
tagString string
}