123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262 |
- // Copyright 2020 The Gogs 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 db
- import (
- "testing"
- "time"
- "github.com/jinzhu/gorm"
- "github.com/stretchr/testify/assert"
- "gogs.io/gogs/internal/errutil"
- )
- func Test_users(t *testing.T) {
- if testing.Short() {
- t.Skip()
- }
- t.Parallel()
- tables := []interface{}{new(User), new(EmailAddress)}
- db := &users{
- DB: initTestDB(t, "users", tables...),
- }
- for _, tc := range []struct {
- name string
- test func(*testing.T, *users)
- }{
- {"Authenticate", test_users_Authenticate},
- {"Create", test_users_Create},
- {"GetByEmail", test_users_GetByEmail},
- {"GetByID", test_users_GetByID},
- {"GetByUsername", test_users_GetByUsername},
- } {
- t.Run(tc.name, func(t *testing.T) {
- t.Cleanup(func() {
- err := clearTables(t, db.DB, tables...)
- if err != nil {
- t.Fatal(err)
- }
- })
- tc.test(t, db)
- })
- }
- }
- // TODO: Only local account is tested, tests for external account will be added
- // along with addressing https://github.com/gogs/gogs/issues/6115.
- func test_users_Authenticate(t *testing.T, db *users) {
- password := "pa$$word"
- alice, err := db.Create(CreateUserOpts{
- Name: "alice",
- Email: "alice@example.com",
- Password: password,
- })
- if err != nil {
- t.Fatal(err)
- }
- t.Run("user not found", func(t *testing.T) {
- _, err := db.Authenticate("bob", password, -1)
- expErr := ErrUserNotExist{args: map[string]interface{}{"login": "bob"}}
- assert.Equal(t, expErr, err)
- })
- t.Run("invalid password", func(t *testing.T) {
- _, err := db.Authenticate(alice.Name, "bad_password", -1)
- expErr := ErrUserNotExist{args: map[string]interface{}{"userID": alice.ID, "name": alice.Name}}
- assert.Equal(t, expErr, err)
- })
- t.Run("via email and password", func(t *testing.T) {
- user, err := db.Authenticate(alice.Email, password, -1)
- if err != nil {
- t.Fatal(err)
- }
- assert.Equal(t, alice.Name, user.Name)
- })
- t.Run("via username and password", func(t *testing.T) {
- user, err := db.Authenticate(alice.Name, password, -1)
- if err != nil {
- t.Fatal(err)
- }
- assert.Equal(t, alice.Name, user.Name)
- })
- }
- func test_users_Create(t *testing.T, db *users) {
- alice, err := db.Create(CreateUserOpts{
- Name: "alice",
- Email: "alice@example.com",
- Activated: true,
- })
- if err != nil {
- t.Fatal(err)
- }
- t.Run("name not allowed", func(t *testing.T) {
- _, err := db.Create(CreateUserOpts{
- Name: "-",
- })
- expErr := ErrNameNotAllowed{args: errutil.Args{"reason": "reserved", "name": "-"}}
- assert.Equal(t, expErr, err)
- })
- t.Run("name already exists", func(t *testing.T) {
- _, err := db.Create(CreateUserOpts{
- Name: alice.Name,
- })
- expErr := ErrUserAlreadyExist{args: errutil.Args{"name": alice.Name}}
- assert.Equal(t, expErr, err)
- })
- t.Run("email already exists", func(t *testing.T) {
- _, err := db.Create(CreateUserOpts{
- Name: "bob",
- Email: alice.Email,
- })
- expErr := ErrEmailAlreadyUsed{args: errutil.Args{"email": alice.Email}}
- assert.Equal(t, expErr, err)
- })
- user, err := db.GetByUsername(alice.Name)
- if err != nil {
- t.Fatal(err)
- }
- assert.Equal(t, gorm.NowFunc().Format(time.RFC3339), user.Created.UTC().Format(time.RFC3339))
- assert.Equal(t, gorm.NowFunc().Format(time.RFC3339), user.Updated.UTC().Format(time.RFC3339))
- }
- func test_users_GetByEmail(t *testing.T, db *users) {
- t.Run("empty email", func(t *testing.T) {
- _, err := db.GetByEmail("")
- expErr := ErrUserNotExist{args: errutil.Args{"email": ""}}
- assert.Equal(t, expErr, err)
- })
- t.Run("ignore organization", func(t *testing.T) {
- // TODO: Use Orgs.Create to replace SQL hack when the method is available.
- org, err := db.Create(CreateUserOpts{
- Name: "gogs",
- Email: "gogs@exmaple.com",
- })
- if err != nil {
- t.Fatal(err)
- }
- err = db.Exec(`UPDATE user SET type = ? WHERE id = ?`, UserOrganization, org.ID).Error
- if err != nil {
- t.Fatal(err)
- }
- _, err = db.GetByEmail(org.Email)
- expErr := ErrUserNotExist{args: errutil.Args{"email": org.Email}}
- assert.Equal(t, expErr, err)
- })
- t.Run("by primary email", func(t *testing.T) {
- alice, err := db.Create(CreateUserOpts{
- Name: "alice",
- Email: "alice@exmaple.com",
- })
- if err != nil {
- t.Fatal(err)
- }
- _, err = db.GetByEmail(alice.Email)
- expErr := ErrUserNotExist{args: errutil.Args{"email": alice.Email}}
- assert.Equal(t, expErr, err)
- // Mark user as activated
- // TODO: Use UserEmails.Verify to replace SQL hack when the method is available.
- err = db.Exec(`UPDATE user SET is_active = ? WHERE id = ?`, true, alice.ID).Error
- if err != nil {
- t.Fatal(err)
- }
- user, err := db.GetByEmail(alice.Email)
- if err != nil {
- t.Fatal(err)
- }
- assert.Equal(t, alice.Name, user.Name)
- })
- t.Run("by secondary email", func(t *testing.T) {
- bob, err := db.Create(CreateUserOpts{
- Name: "bob",
- Email: "bob@example.com",
- })
- if err != nil {
- t.Fatal(err)
- }
- // TODO: Use UserEmails.Create to replace SQL hack when the method is available.
- email2 := "bob2@exmaple.com"
- err = db.Exec(`INSERT INTO email_address (uid, email) VALUES (?, ?)`, bob.ID, email2).Error
- if err != nil {
- t.Fatal(err)
- }
- _, err = db.GetByEmail(email2)
- expErr := ErrUserNotExist{args: errutil.Args{"email": email2}}
- assert.Equal(t, expErr, err)
- // TODO: Use UserEmails.Verify to replace SQL hack when the method is available.
- err = db.Exec(`UPDATE email_address SET is_activated = ? WHERE email = ?`, true, email2).Error
- if err != nil {
- t.Fatal(err)
- }
- user, err := db.GetByEmail(email2)
- if err != nil {
- t.Fatal(err)
- }
- assert.Equal(t, bob.Name, user.Name)
- })
- }
- func test_users_GetByID(t *testing.T, db *users) {
- alice, err := db.Create(CreateUserOpts{
- Name: "alice",
- Email: "alice@exmaple.com",
- })
- if err != nil {
- t.Fatal(err)
- }
- user, err := db.GetByID(alice.ID)
- if err != nil {
- t.Fatal(err)
- }
- assert.Equal(t, alice.Name, user.Name)
- _, err = db.GetByID(404)
- expErr := ErrUserNotExist{args: errutil.Args{"userID": int64(404)}}
- assert.Equal(t, expErr, err)
- }
- func test_users_GetByUsername(t *testing.T, db *users) {
- alice, err := db.Create(CreateUserOpts{
- Name: "alice",
- Email: "alice@exmaple.com",
- })
- if err != nil {
- t.Fatal(err)
- }
- user, err := db.GetByUsername(alice.Name)
- if err != nil {
- t.Fatal(err)
- }
- assert.Equal(t, alice.Name, user.Name)
- _, err = db.GetByUsername("bad_username")
- expErr := ErrUserNotExist{args: errutil.Args{"name": "bad_username"}}
- assert.Equal(t, expErr, err)
- }
|