Skip to content

Commit 60f3a8d

Browse files
authored
Merge pull request #232 from StratoAG/fix-semver
Fix go module requirements for semantic versioning
2 parents ec1441c + 4c648a1 commit 60f3a8d

28 files changed

+47
-10
lines changed

cmd/csi-sanity/sanity_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"os"
2222
"testing"
2323

24-
"github.com/kubernetes-csi/csi-test/pkg/sanity"
24+
"github.com/kubernetes-csi/csi-test/v3/pkg/sanity"
2525
)
2626

2727
const (

cmd/mock-driver/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ import (
2424
"strings"
2525
"syscall"
2626

27-
"github.com/kubernetes-csi/csi-test/driver"
28-
"github.com/kubernetes-csi/csi-test/mock/service"
27+
"github.com/kubernetes-csi/csi-test/v3/driver"
28+
"github.com/kubernetes-csi/csi-test/v3/mock/service"
2929
)
3030

3131
func main() {

driver/mock.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ package driver
1919
import (
2020
"net"
2121

22-
"github.com/kubernetes-csi/csi-test/utils"
22+
"github.com/kubernetes-csi/csi-test/v3/utils"
2323
"google.golang.org/grpc"
2424
)
2525

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/kubernetes-csi/csi-test
1+
module github.com/kubernetes-csi/csi-test/v3
22

33
go 1.12
44

mock/service/service.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"sync/atomic"
88

99
"github.com/container-storage-interface/spec/lib/go/csi"
10-
"github.com/kubernetes-csi/csi-test/mock/cache"
10+
"github.com/kubernetes-csi/csi-test/v3/mock/cache"
1111
"golang.org/x/net/context"
1212

1313
"github.com/golang/protobuf/ptypes"

pkg/sanity/sanity.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727
"testing"
2828
"time"
2929

30-
"github.com/kubernetes-csi/csi-test/utils"
30+
"github.com/kubernetes-csi/csi-test/v3/utils"
3131
yaml "gopkg.in/yaml.v2"
3232

3333
"google.golang.org/grpc"

test/co_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ import (
2424
"github.com/container-storage-interface/spec/lib/go/csi"
2525
"github.com/golang/mock/gomock"
2626
"github.com/golang/protobuf/proto"
27-
mock_driver "github.com/kubernetes-csi/csi-test/driver"
28-
mock_utils "github.com/kubernetes-csi/csi-test/utils"
27+
mock_driver "github.com/kubernetes-csi/csi-test/v3/driver"
28+
mock_utils "github.com/kubernetes-csi/csi-test/v3/utils"
2929
)
3030

3131
func TestPluginInfoResponse(t *testing.T) {

test/driver_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
"testing"
2323

2424
"github.com/container-storage-interface/spec/lib/go/csi"
25-
"github.com/kubernetes-csi/csi-test/utils"
25+
"github.com/kubernetes-csi/csi-test/v3/utils"
2626
"google.golang.org/grpc"
2727
"google.golang.org/grpc/reflection"
2828
)

v3/README.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
This directory mirrors the source code via symlinks.
2+
This makes it possible to vendor v3.x releases of
3+
csi-test with `dep` versions that do not support
4+
semantic imports. Support for that is currently
5+
[pending in dep](https://github.com/golang/dep/pull/1963).
6+
7+
If users of dep have enabled pruning, they must disable if
8+
for csi-test in their Gopk.toml, like this:
9+
10+
```toml
11+
[prune]
12+
go-tests = true
13+
unused-packages = true
14+
15+
[[prune.project]]
16+
name = "github.com/kubernetes-csi/csi-test"
17+
unused-packages = false
18+
```

v3/driver/driver-controller.go

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../driver/driver-controller.go

v3/driver/driver-node.go

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../driver/driver-node.go

v3/driver/driver.go

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../driver/driver.go

v3/driver/driver.mock.go

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../driver/driver.mock.go

v3/driver/mock.go

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../driver/mock.go

v3/mock/cache/SnapshotCache.go

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../mock/cache/SnapshotCache.go

v3/mock/service/controller.go

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../mock/service/controller.go

v3/mock/service/identity.go

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../mock/service/identity.go

v3/mock/service/node.go

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../mock/service/node.go

v3/mock/service/service.go

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../mock/service/service.go

v3/pkg/sanity/cleanup.go

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../pkg/sanity/cleanup.go

v3/pkg/sanity/controller.go

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../pkg/sanity/controller.go

v3/pkg/sanity/identity.go

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../pkg/sanity/identity.go

v3/pkg/sanity/node.go

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../pkg/sanity/node.go

v3/pkg/sanity/sanity.go

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../pkg/sanity/sanity.go

v3/pkg/sanity/tests.go

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../pkg/sanity/tests.go

v3/pkg/sanity/util.go

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../pkg/sanity/util.go

v3/utils/grpcutil.go

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../utils/grpcutil.go

v3/utils/safegoroutinetester.go

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../utils/safegoroutinetester.go

0 commit comments

Comments
 (0)