mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-22 16:45:43 +00:00
03df23d97c
* fix inaccruate 401 error on SQL db error
* init golangci-lint config
* linter autofix
* testify auto fixes
* fix sqlite busy errors
* fix naming
* more linter errors
* fix rest of linter issues
Former-commit-id: e8449b3a73
47 lines
1.1 KiB
Go
47 lines
1.1 KiB
Go
package repo
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func Test_Group_Create(t *testing.T) {
|
|
g, err := tRepos.Groups.GroupCreate(context.Background(), "test")
|
|
|
|
require.NoError(t, err)
|
|
assert.Equal(t, "test", g.Name)
|
|
|
|
// Get by ID
|
|
foundGroup, err := tRepos.Groups.GroupByID(context.Background(), g.ID)
|
|
require.NoError(t, err)
|
|
assert.Equal(t, g.ID, foundGroup.ID)
|
|
}
|
|
|
|
func Test_Group_Update(t *testing.T) {
|
|
g, err := tRepos.Groups.GroupCreate(context.Background(), "test")
|
|
require.NoError(t, err)
|
|
|
|
g, err = tRepos.Groups.GroupUpdate(context.Background(), g.ID, GroupUpdate{
|
|
Name: "test2",
|
|
Currency: "eur",
|
|
})
|
|
require.NoError(t, err)
|
|
assert.Equal(t, "test2", g.Name)
|
|
assert.Equal(t, "EUR", g.Currency)
|
|
}
|
|
|
|
func Test_Group_GroupStatistics(t *testing.T) {
|
|
useItems(t, 20)
|
|
useLabels(t, 20)
|
|
|
|
stats, err := tRepos.Groups.StatsGroup(context.Background(), tGroup.ID)
|
|
|
|
require.NoError(t, err)
|
|
assert.Equal(t, 20, stats.TotalItems)
|
|
assert.Equal(t, 20, stats.TotalLabels)
|
|
assert.Equal(t, 1, stats.TotalUsers)
|
|
assert.Equal(t, 1, stats.TotalLocations)
|
|
}
|