-
Notifications
You must be signed in to change notification settings - Fork 240
/
Copy pathbuckets_test.go
67 lines (63 loc) · 1.83 KB
/
buckets_test.go
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
package buckets
import (
"context"
"net/http"
"path/filepath"
"testing"
"github.com/BurntSushi/toml"
"github.com/h2non/gock"
"github.com/spf13/afero"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/supabase/cli/internal/testing/apitest"
"github.com/supabase/cli/internal/utils"
"github.com/supabase/cli/pkg/storage"
)
func TestSeedBuckets(t *testing.T) {
t.Run("seeds buckets", func(t *testing.T) {
t.Cleanup(func() { clear(utils.Config.Storage.Buckets) })
config := `
[test]
public = true
[private]
public = false`
require.NoError(t, toml.Unmarshal([]byte(config), &utils.Config.Storage.Buckets))
// Setup in-memory fs
fsys := afero.NewMemMapFs()
bucketPath := filepath.Join(utils.SupabaseDirPath, "images")
require.NoError(t, fsys.Mkdir(bucketPath, 0755))
// Setup mock api
gock.New(utils.Config.Api.ExternalUrl).
Get("/storage/v1/bucket").
Reply(http.StatusOK).
JSON([]storage.BucketResponse{{
Name: "test",
Id: "test",
}})
gock.New(utils.Config.Api.ExternalUrl).
Put("/storage/v1/bucket/test").
Reply(http.StatusOK).
JSON(storage.UpdateBucketResponse{})
gock.New(utils.Config.Api.ExternalUrl).
Post("/storage/v1/bucket").
Reply(http.StatusOK).
JSON(storage.CreateBucketResponse{Name: "private"})
// Run test
err := Run(context.Background(), "", false, fsys)
// Check error
assert.NoError(t, err)
assert.Empty(t, apitest.ListUnmatchedRequests())
})
t.Run("ignores unconfigured buckets", func(t *testing.T) {
// Setup mock api
gock.New(utils.Config.Api.ExternalUrl).
Get("/storage/v1/bucket").
Reply(http.StatusOK).
JSON([]storage.BucketResponse{})
// Run test
err := Run(context.Background(), "", false, afero.NewMemMapFs())
// Check error
assert.NoError(t, err)
assert.Empty(t, apitest.ListUnmatchedRequests())
})
}