2017-10-01 08:13:39 +00:00
|
|
|
// 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 bigquery
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"cloud.google.com/go/internal/testutil"
|
|
|
|
bq "google.golang.org/api/bigquery/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestCreateJobRef(t *testing.T) {
|
2017-12-03 20:01:25 +00:00
|
|
|
defer fixRandomID("RANDOM")()
|
2017-10-01 08:13:39 +00:00
|
|
|
for _, test := range []struct {
|
|
|
|
jobID string
|
|
|
|
addJobIDSuffix bool
|
|
|
|
want string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
jobID: "foo",
|
|
|
|
addJobIDSuffix: false,
|
|
|
|
want: "foo",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
jobID: "",
|
|
|
|
addJobIDSuffix: false,
|
|
|
|
want: "RANDOM",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
jobID: "",
|
|
|
|
addJobIDSuffix: true, // irrelevant
|
|
|
|
want: "RANDOM",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
jobID: "foo",
|
|
|
|
addJobIDSuffix: true,
|
|
|
|
want: "foo-RANDOM",
|
|
|
|
},
|
|
|
|
} {
|
2017-12-03 20:01:25 +00:00
|
|
|
jc := JobIDConfig{JobID: test.jobID, AddJobIDSuffix: test.addJobIDSuffix}
|
|
|
|
jr := jc.createJobRef("projectID")
|
2017-10-01 08:13:39 +00:00
|
|
|
got := jr.JobId
|
|
|
|
if got != test.want {
|
|
|
|
t.Errorf("%q, %t: got %q, want %q", test.jobID, test.addJobIDSuffix, got, test.want)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-03 20:01:25 +00:00
|
|
|
func fixRandomID(s string) func() {
|
|
|
|
prev := randomIDFn
|
|
|
|
randomIDFn = func() string { return s }
|
|
|
|
return func() { randomIDFn = prev }
|
2017-10-01 08:13:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func checkJob(t *testing.T, i int, got, want *bq.Job) {
|
|
|
|
if got.JobReference == nil {
|
|
|
|
t.Errorf("#%d: empty job reference", i)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if got.JobReference.JobId == "" {
|
|
|
|
t.Errorf("#%d: empty job ID", i)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
d := testutil.Diff(got, want)
|
|
|
|
if d != "" {
|
|
|
|
t.Errorf("#%d: (got=-, want=+) %s", i, d)
|
|
|
|
}
|
|
|
|
}
|