forked from go-gitea/gitea
-
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 some Unit-Tests (go-gitea#14500)
* fix url * modules/auth/pa: coverage: 40#.0% * modules/base coverage: 67.6% -> 89.9% * modules/cache coverage: 0% -> 12.0% * modules/convert coverage: 27.1% -> 29.7%
- Loading branch information
Showing
6 changed files
with
306 additions
and
9 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,20 @@ | ||
// +build pam | ||
|
||
// Copyright 2021 The Gitea Authors. All rights reserved. | ||
// Use of this source code is governed by a MIT-style | ||
// license that can be found in the LICENSE file. | ||
|
||
package pam | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestPamAuth(t *testing.T) { | ||
result, err := Auth("gitea", "user1", "false-pwd") | ||
assert.Error(t, err) | ||
assert.EqualValues(t, "Authentication failure", err.Error()) | ||
assert.Len(t, result, 0) | ||
} |
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
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,151 @@ | ||
// Copyright 2021 The Gitea Authors. All rights reserved. | ||
// Use of this source code is governed by a MIT-style | ||
// license that can be found in the LICENSE file. | ||
|
||
package cache | ||
|
||
import ( | ||
"fmt" | ||
"testing" | ||
"time" | ||
|
||
"code.gitea.io/gitea/modules/setting" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func createTestCache() { | ||
conn, _ = newCache(setting.Cache{ | ||
Adapter: "memory", | ||
TTL: time.Minute, | ||
}) | ||
} | ||
|
||
func TestNewContext(t *testing.T) { | ||
assert.NoError(t, NewContext()) | ||
|
||
setting.CacheService.Cache = setting.Cache{Enabled: true, Adapter: "redis", Conn: "some random string"} | ||
con, err := newCache(setting.Cache{ | ||
Adapter: "rand", | ||
Conn: "false conf", | ||
Interval: 100, | ||
}) | ||
assert.Error(t, err) | ||
assert.Nil(t, con) | ||
} | ||
|
||
func TestGetCache(t *testing.T) { | ||
createTestCache() | ||
|
||
assert.NotNil(t, GetCache()) | ||
} | ||
|
||
func TestGetString(t *testing.T) { | ||
createTestCache() | ||
|
||
data, err := GetString("key", func() (string, error) { | ||
return "", fmt.Errorf("some error") | ||
}) | ||
assert.Error(t, err) | ||
assert.Equal(t, "", data) | ||
|
||
data, err = GetString("key", func() (string, error) { | ||
return "", nil | ||
}) | ||
assert.NoError(t, err) | ||
assert.Equal(t, "", data) | ||
|
||
// data, err = GetString("key", func() (string, error) { | ||
// return "some data", nil | ||
// }) | ||
// assert.NoError(t, err) | ||
// assert.Equal(t, "", data) | ||
// Remove("key") | ||
|
||
data, err = GetString("key", func() (string, error) { | ||
return "some data", nil | ||
}) | ||
assert.NoError(t, err) | ||
assert.Equal(t, "some data", data) | ||
|
||
// data, err = GetString("key", func() (string, error) { | ||
// return "", fmt.Errorf("some error") | ||
// }) | ||
// assert.NoError(t, err) | ||
// assert.Equal(t, "some data", data) | ||
|
||
// TODO: uncommented code works in IDE but not with go test | ||
} | ||
|
||
func TestGetInt(t *testing.T) { | ||
createTestCache() | ||
|
||
data, err := GetInt("key", func() (int, error) { | ||
return 0, fmt.Errorf("some error") | ||
}) | ||
assert.Error(t, err) | ||
assert.Equal(t, 0, data) | ||
|
||
data, err = GetInt("key", func() (int, error) { | ||
return 0, nil | ||
}) | ||
assert.NoError(t, err) | ||
assert.Equal(t, 0, data) | ||
|
||
// data, err = GetInt("key", func() (int, error) { | ||
// return 100, nil | ||
// }) | ||
// assert.NoError(t, err) | ||
// assert.Equal(t, 0, data) | ||
// Remove("key") | ||
|
||
data, err = GetInt("key", func() (int, error) { | ||
return 100, nil | ||
}) | ||
assert.NoError(t, err) | ||
assert.Equal(t, 100, data) | ||
|
||
// data, err = GetInt("key", func() (int, error) { | ||
// return 0, fmt.Errorf("some error") | ||
// }) | ||
// assert.NoError(t, err) | ||
// assert.Equal(t, 100, data) | ||
|
||
// TODO: uncommented code works in IDE but not with go test | ||
} | ||
func TestGetInt64(t *testing.T) { | ||
createTestCache() | ||
|
||
data, err := GetInt64("key", func() (int64, error) { | ||
return 0, fmt.Errorf("some error") | ||
}) | ||
assert.Error(t, err) | ||
assert.EqualValues(t, 0, data) | ||
|
||
data, err = GetInt64("key", func() (int64, error) { | ||
return 0, nil | ||
}) | ||
assert.NoError(t, err) | ||
assert.EqualValues(t, 0, data) | ||
|
||
// data, err = GetInt64("key", func() (int64, error) { | ||
// return 100, nil | ||
// }) | ||
// assert.NoError(t, err) | ||
// assert.EqualValues(t, 0, data) | ||
// Remove("key") | ||
|
||
data, err = GetInt64("key", func() (int64, error) { | ||
return 100, nil | ||
}) | ||
assert.NoError(t, err) | ||
assert.EqualValues(t, 100, data) | ||
|
||
// data, err = GetInt64("key", func() (int, error) { | ||
// return 0, fmt.Errorf("some error") | ||
// }) | ||
// assert.NoError(t, err) | ||
// assert.EqualValues(t, 100, data) | ||
|
||
// TODO: uncommented code works in IDE but not with go test | ||
} |
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 @@ | ||
// Copyright 2021 The Gitea Authors. All rights reserved. | ||
// Use of this source code is governed by a MIT-style | ||
// license that can be found in the LICENSE file. | ||
|
||
package convert | ||
|
||
import ( | ||
"testing" | ||
|
||
_ "github.com/mattn/go-sqlite3" | ||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestToCorrectPageSize(t *testing.T) { | ||
assert.EqualValues(t, 30, ToCorrectPageSize(0)) | ||
assert.EqualValues(t, 30, ToCorrectPageSize(-10)) | ||
assert.EqualValues(t, 20, ToCorrectPageSize(20)) | ||
assert.EqualValues(t, 50, ToCorrectPageSize(100)) | ||
} | ||
|
||
func TestToGitServiceType(t *testing.T) { | ||
tc := []struct { | ||
typ string | ||
enum int | ||
}{{ | ||
typ: "github", enum: 2, | ||
}, { | ||
typ: "gitea", enum: 3, | ||
}, { | ||
typ: "gitlab", enum: 4, | ||
}, { | ||
typ: "gogs", enum: 5, | ||
}, { | ||
typ: "trash", enum: 1, | ||
}} | ||
for _, test := range tc { | ||
assert.EqualValues(t, test.enum, ToGitServiceType(test.typ)) | ||
} | ||
} |