summaryrefslogtreecommitdiffstats
path: root/modules/storage/helper_test.go
blob: 60a7c61289a8ea7d0ff32875390b1a014f331d5f (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
// Copyright 2022 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package storage

import (
	"bytes"
	"testing"

	"github.com/stretchr/testify/assert"
	"github.com/stretchr/testify/require"
)

func Test_discardStorage(t *testing.T) {
	tests := []DiscardStorage{
		UninitializedStorage,
		DiscardStorage("empty"),
	}
	for _, tt := range tests {
		t.Run(string(tt), func(t *testing.T) {
			{
				got, err := tt.Open("path")
				assert.Nil(t, got)
				require.Error(t, err, string(tt))
			}
			{
				got, err := tt.Save("path", bytes.NewReader([]byte{0}), 1)
				assert.Equal(t, int64(0), got)
				require.Error(t, err, string(tt))
			}
			{
				got, err := tt.Stat("path")
				assert.Nil(t, got)
				require.Error(t, err, string(tt))
			}
			{
				err := tt.Delete("path")
				require.Error(t, err, string(tt))
			}
			{
				got, err := tt.URL("path", "name")
				assert.Nil(t, got)
				require.Errorf(t, err, string(tt))
			}
			{
				err := tt.IterateObjects("", func(_ string, _ Object) error { return nil })
				require.Error(t, err, string(tt))
			}
		})
	}
}