Update dependenciess
Exclude minio-go for now (pin to 3.x.y).
This commit is contained in:
parent
9d0f13c4c0
commit
946c8399e2
2985 changed files with 1008107 additions and 118934 deletions
66
vendor/google.golang.org/api/internal/settings_test.go
generated
vendored
Normal file
66
vendor/google.golang.org/api/internal/settings_test.go
generated
vendored
Normal file
|
@ -0,0 +1,66 @@
|
|||
// Copyright 2017 Google Inc. All Rights Reserved.
|
||||
//
|
||||
// Licensed 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 internal supports the options and transport packages.
|
||||
package internal
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"testing"
|
||||
|
||||
"google.golang.org/grpc"
|
||||
|
||||
"golang.org/x/oauth2"
|
||||
)
|
||||
|
||||
func TestSettingsValidate(t *testing.T) {
|
||||
// Valid.
|
||||
for _, ds := range []DialSettings{
|
||||
{},
|
||||
{APIKey: "x"},
|
||||
{Scopes: []string{"s"}},
|
||||
{CredentialsFile: "f"},
|
||||
{TokenSource: dummyTS{}},
|
||||
{HTTPClient: &http.Client{}},
|
||||
{GRPCConn: &grpc.ClientConn{}},
|
||||
// Although NoAuth and Scopes are technically incompatible, too many
|
||||
// cloud clients add WithScopes to user-provided options to make
|
||||
// the check feasible.
|
||||
{NoAuth: true, Scopes: []string{"s"}},
|
||||
} {
|
||||
err := ds.Validate()
|
||||
if err != nil {
|
||||
t.Errorf("%+v: got %v, want nil", ds, err)
|
||||
}
|
||||
}
|
||||
|
||||
// Invalid.
|
||||
for _, ds := range []DialSettings{
|
||||
{NoAuth: true, APIKey: "x"},
|
||||
{NoAuth: true, CredentialsFile: "f"},
|
||||
{NoAuth: true, TokenSource: dummyTS{}},
|
||||
{HTTPClient: &http.Client{}, GRPCConn: &grpc.ClientConn{}},
|
||||
{HTTPClient: &http.Client{}, GRPCDialOpts: []grpc.DialOption{grpc.WithInsecure()}},
|
||||
} {
|
||||
err := ds.Validate()
|
||||
if err == nil {
|
||||
t.Errorf("%+v: got nil, want error", ds)
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
type dummyTS struct{}
|
||||
|
||||
func (dummyTS) Token() (*oauth2.Token, error) { return nil, nil }
|
Loading…
Add table
Add a link
Reference in a new issue