aboutsummaryrefslogtreecommitdiff
path: root/pkg/database/sql/user_test.go
blob: db436767045e01cc9b20d03e3bee2576e01c6707 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
//go:build integration

package sql

import (
	"context"
	"testing"

	"github.com/google/go-cmp/cmp"

	"git.sr.ht/~gabrielgio/img/pkg/database/repository"
)

func TestCreate(t *testing.T) {
	t.Parallel()
	db, tearDown := setup(t)
	defer tearDown()

	userRepository := NewUserRepository(db)

	id, err := userRepository.Create(context.Background(), &repository.CreateUser{
		Username: "new_username",
		Name:     "new_name",
	})
	if err != nil {
		t.Fatalf("Error creating: %s", err.Error())
	}

	got, err := userRepository.Get(context.Background(), id)
	if err != nil {
		t.Fatalf("Error getting: %s", err.Error())
	}
	want := &repository.User{
		ID:       id,
		Username: "new_username",
		Name:     "new_name",
	}

	if diff := cmp.Diff(want, got); diff != "" {
		t.Errorf("%s() mismatch (-want +got):\n%s", "Update", diff)
	}
}

func TestUpdate(t *testing.T) {
	t.Parallel()
	db, tearDown := setup(t)
	defer tearDown()

	userRepository := NewUserRepository(db)

	id, err := userRepository.Create(context.Background(), &repository.CreateUser{
		Username: "username",
		Name:     "name",
	})
	if err != nil {
		t.Fatalf("Error creating user: %s", err.Error())
	}

	err = userRepository.Update(context.Background(), id, &repository.UpdateUser{
		Username: "new_username",
		Name:     "new_name",
	})
	if err != nil {
		t.Fatalf("Error update user: %s", err.Error())
	}

	got, err := userRepository.Get(context.Background(), 1)
	if err != nil {
		t.Fatalf("Error getting user: %s", err.Error())
	}
	want := &repository.User{
		ID:       id,
		Username: "new_username",
		Name:     "new_name",
	}

	if diff := cmp.Diff(want, got); diff != "" {
		t.Errorf("%s() mismatch (-want +got):\n%s", "Update", diff)
	}
}