Skip to content

Commit

Permalink
Add Unit Tests for Custom Resource Controller (F5Networks#1831)
Browse files Browse the repository at this point in the history
  • Loading branch information
subbuv26 authored Jun 30, 2021
1 parent 3cdcbbd commit 7e35cfc
Show file tree
Hide file tree
Showing 1,700 changed files with 127,997 additions and 17,971 deletions.
55 changes: 34 additions & 21 deletions all_attributions.txt
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,40 @@ LICENSE:
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.

github.com/f5devcentral/mockhttpclient
License: Apache-2.0
Matched files: LICENSE
LICENSE:
Content hash: bec905d850e7f5dc2e2db78a950d4a9db560a0b8
Confidence: 100.00%
Matcher: Licensee::Matchers::Exact
License: Apache-2.0

Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/

TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

1. Definitions.

"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.

"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.

"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.

"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.

github.com/fsnotify/fsnotify
License: BSD-3-Clause
Matched files: LICENSE
Expand Down Expand Up @@ -1423,27 +1457,6 @@ PATENTS:
BSD-2-Clause similarity: 22.81%
Unlicense similarity: 22.05%

golang.org/x/xerrors
License: NOASSERTION
Matched files: LICENSE, PATENTS
LICENSE:
Content hash: 888283c600fb58aef22e691d1ca63728a96bff24
Attribution: Copyright (c) 2019 The Go Authors. All rights reserved.
Confidence: 99.17%
Matcher: Licensee::Matchers::Dice
License: BSD-3-Clause
Closest non-matching licenses:
BSD-3-Clause similarity: 99.17%
BSD-4-Clause similarity: 85.20%
BSD-3-Clause-Clear similarity: 84.10%
PATENTS:
Content hash: b949804a77a1e1a14fb61c747f303dd66e2201a3
License: NOASSERTION
Closest non-matching licenses:
BSL-1.0 similarity: 24.89%
BSD-2-Clause similarity: 22.81%
Unlicense similarity: 22.05%

google.golang.org/appengine
License: Apache-2.0
Matched files: LICENSE
Expand Down
29 changes: 16 additions & 13 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,25 +1,28 @@
module github.com/F5Networks/k8s-bigip-ctlr

go 1.15
go 1.16

require (
github.com/F5Networks/f5-ipam-controller v0.1.2-0.20210416093847-f0eeef5171d9
github.com/f5devcentral/go-bigip/f5teem v0.0.0-20210526072548-2f78050d672f
github.com/F5Networks/f5-ipam-controller v0.1.3
github.com/f5devcentral/go-bigip/f5teem v0.0.0-20210621162944-38d486e26398
github.com/f5devcentral/mockhttpclient v0.0.0-20210630101009-cc12e8b81051
github.com/google/uuid v1.1.2
github.com/hashicorp/golang-lru v0.5.3 // indirect
github.com/miekg/dns v1.0.14
github.com/onsi/ginkgo v1.14.2
github.com/onsi/gomega v1.10.4
github.com/onsi/ginkgo v1.16.2
github.com/onsi/gomega v1.12.0
github.com/openshift/api v0.0.0-20210315202829-4b79815405ec
github.com/openshift/client-go v0.0.0-20210112165513-ebc401615f47
github.com/prometheus/client_golang v1.7.1
github.com/spf13/pflag v1.0.5
github.com/xeipuuv/gojsonpointer v0.0.0-20151027082146-e0fe6f683076 // indirect
github.com/xeipuuv/gojsonreference v0.0.0-20150808065054-e02fc20de94c // indirect
github.com/xeipuuv/gojsonschema v0.0.0-20190108114628-f971f3cd73b2
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad
golang.org/x/mod v0.3.0
k8s.io/api v0.20.4
k8s.io/apiextensions-apiserver v0.20.4
k8s.io/apimachinery v0.20.4
k8s.io/client-go v0.20.4
k8s.io/klog/v2 v2.4.0
github.com/xeipuuv/gojsonschema v1.1.0
golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83
golang.org/x/mod v0.4.2
k8s.io/api v0.21.2
k8s.io/apiextensions-apiserver v0.21.2
k8s.io/apimachinery v0.21.2
k8s.io/client-go v0.21.2
k8s.io/klog/v2 v2.9.0
)
163 changes: 99 additions & 64 deletions go.sum

Large diffs are not rendered by default.

Loading

0 comments on commit 7e35cfc

Please sign in to comment.