-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
nydusify: add unit test for nydusify
We had removed the tests files(e2e) in nydusify, we need add the unit tests to improve test coverage. Signed-off-by: Yadong Ding <[email protected]>
- Loading branch information
1 parent
18ba2ed
commit 8c02d5a
Showing
7 changed files
with
676 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
package backend | ||
|
||
import ( | ||
"encoding/json" | ||
"testing" | ||
|
||
"github.com/dragonflyoss/nydus/contrib/nydusify/pkg/provider" | ||
"github.com/dragonflyoss/nydus/contrib/nydusify/pkg/utils" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
func TestBlobDesc(t *testing.T) { | ||
desc := blobDesc(123456, "205eed24cbec29ad9cb4593a73168ef1803402370a82f7d51ce25646fc2f943a") | ||
require.Equal(t, int64(123456), desc.Size) | ||
require.Equal(t, "sha256:205eed24cbec29ad9cb4593a73168ef1803402370a82f7d51ce25646fc2f943a", desc.Digest.String()) | ||
require.Equal(t, utils.MediaTypeNydusBlob, desc.MediaType) | ||
require.Equal(t, map[string]string{ | ||
utils.LayerAnnotationUncompressed: "sha256:205eed24cbec29ad9cb4593a73168ef1803402370a82f7d51ce25646fc2f943a", | ||
utils.LayerAnnotationNydusBlob: "true", | ||
}, desc.Annotations) | ||
} | ||
|
||
func TestNewBackend(t *testing.T) { | ||
ossConfigJSON := ` | ||
{ | ||
"bucket_name": "test", | ||
"endpoint": "region.oss.com", | ||
"access_key_id": "testAK", | ||
"access_key_secret": "testSK", | ||
"object_prefix": "blob" | ||
}` | ||
require.True(t, json.Valid([]byte(ossConfigJSON))) | ||
backend, err := NewBackend("oss", []byte(ossConfigJSON), nil) | ||
require.NoError(t, err) | ||
require.Equal(t, OssBackend, backend.Type()) | ||
|
||
s3ConfigJSON := ` | ||
{ | ||
"bucket_name": "test", | ||
"endpoint": "s3.amazonaws.com", | ||
"access_key_id": "testAK", | ||
"access_key_secret": "testSK", | ||
"object_prefix": "blob", | ||
"scheme": "https", | ||
"region": "region1" | ||
}` | ||
require.True(t, json.Valid([]byte(s3ConfigJSON))) | ||
backend, err = NewBackend("s3", []byte(s3ConfigJSON), nil) | ||
require.NoError(t, err) | ||
require.Equal(t, S3backend, backend.Type()) | ||
|
||
testRegistryRemote, err := provider.DefaultRemote("test", false) | ||
require.NoError(t, err) | ||
backend, err = NewBackend("registry", nil, testRegistryRemote) | ||
require.NoError(t, err) | ||
require.Equal(t, RegistryBackend, backend.Type()) | ||
|
||
backend, err = NewBackend("errBackend", nil, testRegistryRemote) | ||
require.Error(t, err) | ||
require.Contains(t, err.Error(), "unsupported backend type") | ||
require.Nil(t, backend) | ||
} |
Oops, something went wrong.