~nskaggs/+junk/xenial-test

« back to all changes in this revision

Viewing changes to src/google.golang.org/cloud/storage/types_test.go

  • Committer: Nicholas Skaggs
  • Date: 2016-10-24 20:56:05 UTC
  • Revision ID: nicholas.skaggs@canonical.com-20161024205605-z8lta0uvuhtxwzwl
Initi with beta15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright 2014 Google Inc. All Rights Reserved.
 
2
//
 
3
// Licensed under the Apache License, Version 2.0 (the "License");
 
4
// you may not use this file except in compliance with the License.
 
5
// You may obtain a copy of the License at
 
6
//
 
7
//      http://www.apache.org/licenses/LICENSE-2.0
 
8
//
 
9
// Unless required by applicable law or agreed to in writing, software
 
10
// distributed under the License is distributed on an "AS IS" BASIS,
 
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
12
// See the License for the specific language governing permissions and
 
13
// limitations under the License.
 
14
 
 
15
package storage
 
16
 
 
17
import (
 
18
        "fmt"
 
19
        "net/http"
 
20
        "testing"
 
21
 
 
22
        "google.golang.org/cloud"
 
23
)
 
24
 
 
25
type fakeTransport struct{}
 
26
 
 
27
func (t *fakeTransport) RoundTrip(req *http.Request) (*http.Response, error) {
 
28
        return nil, fmt.Errorf("error handling request")
 
29
}
 
30
 
 
31
func TestErrorOnObjectsInsertCall(t *testing.T) {
 
32
        ctx := cloud.NewContext("project-id", &http.Client{
 
33
                Transport: &fakeTransport{}})
 
34
        wc := NewWriter(ctx, "bucketname", "filename1")
 
35
        wc.ContentType = "text/plain"
 
36
        if _, err := wc.Write([]byte("hello world")); err == nil {
 
37
                t.Errorf("expected error on write, got nil")
 
38
        }
 
39
        if err := wc.Close(); err == nil {
 
40
                t.Errorf("expected error on close, got nil")
 
41
        }
 
42
}