testing

package
v0.0.0-...-a002913 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 2, 2015 License: AGPL-3.0 Imports: 32 Imported by: 0

Documentation

Index

Constants

View Source
const (
	StubProviderType               = "stub-provider"
	StubEnvironName                = "stub-environ"
	StubZonedEnvironName           = "stub-zoned-environ"
	StubNetworkingEnvironName      = "stub-networking-environ"
	StubZonedNetworkingEnvironName = "stub-zoned-networking-environ"
)

Variables

View Source
var (
	// SharedStub records all method calls to any of the stubs.
	SharedStub = &testing.Stub{}

	BackingInstance                = &StubBacking{Stub: SharedStub}
	ProviderInstance               = &StubProvider{Stub: SharedStub}
	EnvironInstance                = &StubEnviron{Stub: SharedStub}
	ZonedEnvironInstance           = &StubZonedEnviron{Stub: SharedStub}
	NetworkingEnvironInstance      = &StubNetworkingEnviron{Stub: SharedStub}
	ZonedNetworkingEnvironInstance = &StubZonedNetworkingEnviron{Stub: SharedStub}
)
View Source
var ErrUnauthorized = &params.Error{
	Message: "permission denied",
	Code:    params.CodeUnauthorized,
}

Functions

func AlreadyExistsError

func AlreadyExistsError(what string) *params.Error

func AssertNotImplemented

func AssertNotImplemented(c *gc.C, apiFacade interface{}, methodName string)

func AssertPrincipalServiceDeployed

func AssertPrincipalServiceDeployed(c *gc.C, st *state.State, serviceName string, curl *charm.URL, forced bool, bundle charm.Charm, cons constraints.Value) *state.Service

func CheckMethodCalls

func CheckMethodCalls(c *gc.C, stub *testing.Stub, calls ...StubMethodCall)

CheckMethodCalls works like testing.Stub.CheckCalls, but also checks the receivers.

func NotAssignedError

func NotAssignedError(unitName string) *params.Error

func NotFoundError

func NotFoundError(prefixMessage string) *params.Error

func NotProvisionedError

func NotProvisionedError(machineId string) *params.Error

func PrefixedError

func PrefixedError(prefix, message string) *params.Error

func ResetStub

func ResetStub(stub *testing.Stub)

ResetStub resets all recorded calls and errors of the given stub.

func ServerError

func ServerError(message string) *params.Error

Types

type CharmStoreSuite

type CharmStoreSuite struct {
	gitjujutesting.CleanupSuite

	Session *mgo.Session
	// DischargeUser holds the identity of the user
	// that the 3rd party caveat discharger will issue
	// macaroons for. If it is empty, no caveats will be discharged.
	DischargeUser string

	Srv    *httptest.Server
	Client *csclient.Client
	// contains filtered or unexported fields
}

func (*CharmStoreSuite) SetUpTest

func (s *CharmStoreSuite) SetUpTest(c *gc.C)

func (*CharmStoreSuite) TearDownTest

func (s *CharmStoreSuite) TearDownTest(c *gc.C)

func (*CharmStoreSuite) UploadCharm

func (s *CharmStoreSuite) UploadCharm(c *gc.C, url, name string) (*charm.URL, charm.Charm)

type FakeAuthorizer

type FakeAuthorizer struct {
	Tag            names.Tag
	EnvironManager bool
}

FakeAuthorizer implements the common.Authorizer interface.

func (FakeAuthorizer) AuthClient

func (fa FakeAuthorizer) AuthClient() bool

AuthClient returns whether the authenticated entity is a client user.

func (FakeAuthorizer) AuthEnvironManager

func (fa FakeAuthorizer) AuthEnvironManager() bool

func (FakeAuthorizer) AuthMachineAgent

func (fa FakeAuthorizer) AuthMachineAgent() bool

AuthMachineAgent returns whether the current client is a machine agent.

func (FakeAuthorizer) AuthOwner

func (fa FakeAuthorizer) AuthOwner(tag names.Tag) bool

func (FakeAuthorizer) AuthUnitAgent

func (fa FakeAuthorizer) AuthUnitAgent() bool

AuthUnitAgent returns whether the current client is a unit agent.

func (FakeAuthorizer) GetAuthTag

func (fa FakeAuthorizer) GetAuthTag() names.Tag

type FakeSpace

type FakeSpace struct {
	SpaceName string
	SubnetIds []string
	Public    bool
	NextErr   errReturner
}

FakeSpace implements common.BackingSpace for testing.

func (*FakeSpace) GoString

func (f *FakeSpace) GoString() string

GoString implements fmt.GoStringer.

func (*FakeSpace) Life

func (f *FakeSpace) Life() (life params.Life)

func (*FakeSpace) Name

func (f *FakeSpace) Name() string

func (*FakeSpace) ProviderId

func (f *FakeSpace) ProviderId() (netID network.Id)

func (*FakeSpace) Subnets

func (f *FakeSpace) Subnets() (bs []common.BackingSubnet, err error)

func (*FakeSpace) Zones

func (f *FakeSpace) Zones() []string

type FakeSubnet

type FakeSubnet struct {
	// contains filtered or unexported fields
}

FakeSubnet implements common.BackingSubnet for testing.

func (*FakeSubnet) AvailabilityZones

func (f *FakeSubnet) AvailabilityZones() []string

func (*FakeSubnet) CIDR

func (f *FakeSubnet) CIDR() string

func (*FakeSubnet) GoString

func (f *FakeSubnet) GoString() string

GoString implements fmt.GoStringer.

func (*FakeSubnet) Life

func (f *FakeSubnet) Life() params.Life

func (*FakeSubnet) ProviderId

func (f *FakeSubnet) ProviderId() string

func (*FakeSubnet) SpaceName

func (f *FakeSubnet) SpaceName() string

func (*FakeSubnet) Status

func (f *FakeSubnet) Status() string

func (*FakeSubnet) VLANTag

func (f *FakeSubnet) VLANTag() int

type FakeZone

type FakeZone struct {
	ZoneName      string
	ZoneAvailable bool
}

FakeZone implements providercommon.AvailabilityZone for testing.

func (*FakeZone) Available

func (f *FakeZone) Available() bool

func (*FakeZone) GoString

func (f *FakeZone) GoString() string

GoString implements fmt.GoStringer.

func (*FakeZone) Name

func (f *FakeZone) Name() string

type SetUpFlag

type SetUpFlag bool
const (
	WithZones      SetUpFlag = true
	WithoutZones   SetUpFlag = false
	WithSpaces     SetUpFlag = true
	WithoutSpaces  SetUpFlag = false
	WithSubnets    SetUpFlag = true
	WithoutSubnets SetUpFlag = false
)

type StubBacking

type StubBacking struct {
	*testing.Stub

	EnvConfig *config.Config

	Zones   []providercommon.AvailabilityZone
	Spaces  []common.BackingSpace
	Subnets []common.BackingSubnet
}

StubBacking implements common.NetworkBacking and records calls to its methods.

func (*StubBacking) AddSpace

func (sb *StubBacking) AddSpace(name string, subnets []string, public bool) error

func (*StubBacking) AddSubnet

func (sb *StubBacking) AddSubnet(subnetInfo common.BackingSubnetInfo) (common.BackingSubnet, error)

func (*StubBacking) AllSpaces

func (sb *StubBacking) AllSpaces() ([]common.BackingSpace, error)

func (*StubBacking) AllSubnets

func (sb *StubBacking) AllSubnets() ([]common.BackingSubnet, error)

func (*StubBacking) AvailabilityZones

func (sb *StubBacking) AvailabilityZones() ([]providercommon.AvailabilityZone, error)

func (*StubBacking) EnvironConfig

func (sb *StubBacking) EnvironConfig() (*config.Config, error)

func (*StubBacking) GoString

func (se *StubBacking) GoString() string

GoString implements fmt.GoStringer.

func (*StubBacking) SetAvailabilityZones

func (sb *StubBacking) SetAvailabilityZones(zones []providercommon.AvailabilityZone) error

func (*StubBacking) SetUp

func (sb *StubBacking) SetUp(c *gc.C, envName string, withZones, withSpaces, withSubnets SetUpFlag)

type StubEnviron

type StubEnviron struct {
	*testing.Stub

	environs.Environ // panic on any not implemented method call
}

StubEnviron is used in tests where environs.Environ is needed.

func (*StubEnviron) GoString

func (se *StubEnviron) GoString() string

GoString implements fmt.GoStringer.

type StubMethodCall

type StubMethodCall struct {
	Receiver interface{}
	FuncName string
	Args     []interface{}
}

StubMethodCall is like testing.StubCall, but includes the receiver as well.

func BackingCall

func BackingCall(name string, args ...interface{}) StubMethodCall

BackingCall makes it easy to check method calls on BackingInstance.

func EnvironCall

func EnvironCall(name string, args ...interface{}) StubMethodCall

EnvironCall makes it easy to check method calls on EnvironInstance.

func NetworkingEnvironCall

func NetworkingEnvironCall(name string, args ...interface{}) StubMethodCall

NetworkingEnvironCall makes it easy to check method calls on NetworkingEnvironInstance.

func ProviderCall

func ProviderCall(name string, args ...interface{}) StubMethodCall

ProviderCall makes it easy to check method calls on ProviderInstance.

func ZonedEnvironCall

func ZonedEnvironCall(name string, args ...interface{}) StubMethodCall

ZonedEnvironCall makes it easy to check method calls on ZonedEnvironInstance.

func ZonedNetworkingEnvironCall

func ZonedNetworkingEnvironCall(name string, args ...interface{}) StubMethodCall

ZonedNetworkingEnvironCall makes it easy to check method calls on ZonedNetworkingEnvironInstance.

type StubNetwork

type StubNetwork struct {
}

func (StubNetwork) SetUpSuite

func (s StubNetwork) SetUpSuite(c *gc.C)

type StubNetworkingEnviron

type StubNetworkingEnviron struct {
	*testing.Stub

	environs.NetworkingEnviron // panic on any not implemented method call
}

StubNetworkingEnviron is used in tests where environs.NetworkingEnviron is needed.

func (*StubNetworkingEnviron) GoString

func (se *StubNetworkingEnviron) GoString() string

GoString implements fmt.GoStringer.

func (*StubNetworkingEnviron) Subnets

func (se *StubNetworkingEnviron) Subnets(instId instance.Id, subIds []network.Id) ([]network.SubnetInfo, error)

type StubProvider

type StubProvider struct {
	*testing.Stub

	Zones   []providercommon.AvailabilityZone
	Subnets []network.SubnetInfo

	environs.EnvironProvider // panic on any not implemented method call.
}

StubProvider implements a subset of environs.EnvironProvider methods used in tests.

func (*StubProvider) GoString

func (se *StubProvider) GoString() string

GoString implements fmt.GoStringer.

func (*StubProvider) Open

func (sp *StubProvider) Open(cfg *config.Config) (environs.Environ, error)

type StubZonedEnviron

type StubZonedEnviron struct {
	*testing.Stub

	providercommon.ZonedEnviron // panic on any not implemented method call
}

StubZonedEnviron is used in tests where providercommon.ZonedEnviron is needed.

func (*StubZonedEnviron) AvailabilityZones

func (se *StubZonedEnviron) AvailabilityZones() ([]providercommon.AvailabilityZone, error)

func (*StubZonedEnviron) GoString

func (se *StubZonedEnviron) GoString() string

GoString implements fmt.GoStringer.

type StubZonedNetworkingEnviron

type StubZonedNetworkingEnviron struct {
	*testing.Stub

	// panic on any not implemented method call
	providercommon.ZonedEnviron
	environs.Networking
}

StubZonedNetworkingEnviron is used in tests where features from both environs.Networking and providercommon.ZonedEnviron are needed.

func (*StubZonedNetworkingEnviron) AvailabilityZones

func (se *StubZonedNetworkingEnviron) AvailabilityZones() ([]providercommon.AvailabilityZone, error)

func (*StubZonedNetworkingEnviron) GoString

func (se *StubZonedNetworkingEnviron) GoString() string

GoString implements fmt.GoStringer.

func (*StubZonedNetworkingEnviron) Subnets

func (se *StubZonedNetworkingEnviron) Subnets(instId instance.Id, subIds []network.Id) ([]network.SubnetInfo, error)

func (*StubZonedNetworkingEnviron) SupportsSpaces

func (se *StubZonedNetworkingEnviron) SupportsSpaces() (bool, error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL