github.com/sacloud/libsacloud/v2@v2.32.3/helper/builder/disk/api_client_test.go (about)

     1  // Copyright 2016-2022 The Libsacloud Authors
     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 disk
    16  
    17  import (
    18  	"context"
    19  
    20  	"github.com/sacloud/libsacloud/v2/sacloud"
    21  	"github.com/sacloud/libsacloud/v2/sacloud/types"
    22  )
    23  
    24  type dummyDiskPlanReader struct {
    25  	diskPlan *sacloud.DiskPlan
    26  	err      error
    27  }
    28  
    29  func (d *dummyDiskPlanReader) Read(ctx context.Context, zone string, id types.ID) (*sacloud.DiskPlan, error) {
    30  	if d.err != nil {
    31  		return nil, d.err
    32  	}
    33  	return d.diskPlan, nil
    34  }
    35  
    36  type dummyNoteHandler struct {
    37  	note *sacloud.Note
    38  	err  error
    39  }
    40  
    41  func (d *dummyNoteHandler) Read(ctx context.Context, id types.ID) (*sacloud.Note, error) {
    42  	if d.err != nil {
    43  		return nil, d.err
    44  	}
    45  	return d.note, nil
    46  }
    47  
    48  func (d *dummyNoteHandler) Create(ctx context.Context, param *sacloud.NoteCreateRequest) (*sacloud.Note, error) {
    49  	if d.err != nil {
    50  		return nil, d.err
    51  	}
    52  	return d.note, nil
    53  }
    54  
    55  func (d *dummyNoteHandler) Delete(ctx context.Context, id types.ID) error {
    56  	return d.err
    57  }