blob: 321af70f001b37b6d479883e4c94567d8529f55c [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You under the Apache License, Version 2.0
// (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package bufmodule_test
import (
"bytes"
"context"
"fmt"
"testing"
"time"
)
import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
import (
"github.com/apache/dubbo-kubernetes/pkg/bufman/bufpkg/bufmodule"
"github.com/apache/dubbo-kubernetes/pkg/bufman/bufpkg/bufmodule/bufmoduleref"
"github.com/apache/dubbo-kubernetes/pkg/bufman/bufpkg/bufmodule/bufmoduletesting"
"github.com/apache/dubbo-kubernetes/pkg/bufman/pkg/manifest"
"github.com/apache/dubbo-kubernetes/pkg/bufman/pkg/storage/storagemem"
)
func TestNewModuleForBucket(t *testing.T) {
t.Parallel()
digester, err := manifest.NewDigester(manifest.DigestTypeShake256)
require.NoError(t, err)
nullDigest, err := digester.Digest(&bytes.Buffer{})
require.NoError(t, err)
testNewModuleForBucket(t,
"an empty bucket is a valid parse",
map[string][]byte{},
false,
false,
[]bufmoduleref.ModulePin{},
"",
"",
)
wantPin, err := bufmoduleref.NewModulePin(
"foo",
"bar",
"baz",
"",
"62f35d8aed1149c291d606d958a7ce32",
nullDigest.String(),
time.Time{},
)
require.NoError(t, err)
testNewModuleForBucket(t,
"pins are consumed",
map[string][]byte{
"buf.lock": []byte(fmt.Sprintf(`
version: v1
deps:
- remote: foo
owner: bar
repository: baz
commit: 62f35d8aed1149c291d606d958a7ce32
digest: %s
`, nullDigest)),
},
false,
false,
[]bufmoduleref.ModulePin{wantPin},
"",
"",
)
testNewModuleForBucket(t,
"license and documentation are consumed",
map[string][]byte{
bufmoduletesting.TestModuleDocumentationPath: []byte("foo"),
"LICENSE": []byte("bar"),
},
false,
false,
[]bufmoduleref.ModulePin{},
"foo",
"bar",
)
testNewModuleForBucket(t,
"invalid buf.lock",
map[string][]byte{
"buf.lock": []byte("version: v0"),
},
true,
false,
[]bufmoduleref.ModulePin{},
"",
"",
)
}
func testNewModuleForBucket(
t *testing.T,
desc string,
files map[string][]byte,
isError bool,
isNil bool,
pins []bufmoduleref.ModulePin,
documentation string,
license string,
) {
t.Run(desc, func(t *testing.T) {
t.Parallel()
ctx := context.Background()
bucket, err := storagemem.NewReadBucket(files)
require.NoError(t, err)
module, err := bufmodule.NewModuleForBucket(ctx, bucket)
if isError {
assert.Error(t, err, "isError")
return
}
require.NoError(t, err)
if isNil {
assert.Nil(t, module, "isNil")
return
}
require.NotNil(t, module, "!isNil")
assert.Equal(t, pins, module.DependencyModulePins(), "pins")
assert.Equal(t, documentation, module.Documentation(), "documentation")
assert.Equal(t, license, module.License(), "license")
})
}