diff --git a/apiserver/facades/client/client/backend.go b/apiserver/facades/client/client/backend.go index 75c2fa75773..393b28c941e 100644 --- a/apiserver/facades/client/client/backend.go +++ b/apiserver/facades/client/client/backend.go @@ -10,7 +10,6 @@ import ( "github.com/juju/mgo/v3" "github.com/juju/names/v5" "github.com/juju/replicaset/v3" - "github.com/juju/version/v2" "github.com/juju/juju/apiserver/common/storagecommon" "github.com/juju/juju/core/crossmodel" @@ -38,7 +37,6 @@ type Backend interface { HAPrimaryMachine() (names.MachineTag, error) LatestPlaceholderCharm(*charm.URL) (*state.Charm, error) Machine(string) (*state.Machine, error) - Model() (Model, error) ModelTag() names.ModelTag ModelUUID() string RemoteApplication(string) (*state.RemoteApplication, error) @@ -51,21 +49,6 @@ type MongoSession interface { CurrentStatus() (*replicaset.Status, error) } -// Model contains the state.Model methods used in this package. -type Model interface { - Name() string - Type() state.ModelType - UUID() string - Life() state.Life - CloudName() string - CloudRegion() string - CloudCredentialTag() (names.CloudCredentialTag, bool) - Owner() names.UserTag - StatusHistory(status.StatusHistoryFilter) ([]status.StatusInfo, error) - LatestToolsVersion() version.Number - Status() (status.StatusInfo, error) -} - // Application represents a state.Application. type Application interface { StatusHistory(status.StatusHistoryFilter) ([]status.StatusInfo, error) @@ -113,14 +96,6 @@ func (s stateShim) ModelTag() names.ModelTag { return names.NewModelTag(s.State.ModelUUID()) } -func (s stateShim) Model() (Model, error) { - m, err := s.State.Model() - if err != nil { - return nil, errors.Trace(err) - } - return &modelShim{Model: m}, nil -} - func (s stateShim) ControllerNodes() ([]state.ControllerNode, error) { nodes, err := s.State.ControllerNodes() if err != nil { @@ -140,10 +115,6 @@ func (s stateShim) MongoSession() MongoSession { return MongoSessionShim{s.State.MongoSession()} } -type modelShim struct { - *state.Model -} - // MongoSessionShim wraps a *mgo.Session to conform to the // MongoSession interface. type MongoSessionShim struct { diff --git a/apiserver/facades/client/client/package_mock_test.go b/apiserver/facades/client/client/package_mock_test.go index d719d6a6b21..52efc28f309 100644 --- a/apiserver/facades/client/client/package_mock_test.go +++ b/apiserver/facades/client/client/package_mock_test.go @@ -1,9 +1,9 @@ // Code generated by MockGen. DO NOT EDIT. -// Source: github.com/juju/juju/apiserver/facades/client/client (interfaces: Backend,Model) +// Source: github.com/juju/juju/apiserver/facades/client/client (interfaces: Backend) // // Generated by this command: // -// mockgen -typed -package client_test -destination package_mock_test.go github.com/juju/juju/apiserver/facades/client/client Backend,Model +// mockgen -typed -package client_test -destination package_mock_test.go github.com/juju/juju/apiserver/facades/client/client Backend // // Package client_test is a generated GoMock package. @@ -15,11 +15,9 @@ import ( client "github.com/juju/juju/apiserver/facades/client/client" crossmodel "github.com/juju/juju/core/crossmodel" - status "github.com/juju/juju/core/status" charm "github.com/juju/juju/internal/charm" state "github.com/juju/juju/state" names "github.com/juju/names/v5" - version "github.com/juju/version/v2" gomock "go.uber.org/mock/gomock" ) @@ -634,45 +632,6 @@ func (c *MockBackendMachineCall) DoAndReturn(f func(string) (*state.Machine, err return c } -// Model mocks base method. -func (m *MockBackend) Model() (client.Model, error) { - m.ctrl.T.Helper() - ret := m.ctrl.Call(m, "Model") - ret0, _ := ret[0].(client.Model) - ret1, _ := ret[1].(error) - return ret0, ret1 -} - -// Model indicates an expected call of Model. -func (mr *MockBackendMockRecorder) Model() *MockBackendModelCall { - mr.mock.ctrl.T.Helper() - call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Model", reflect.TypeOf((*MockBackend)(nil).Model)) - return &MockBackendModelCall{Call: call} -} - -// MockBackendModelCall wrap *gomock.Call -type MockBackendModelCall struct { - *gomock.Call -} - -// Return rewrite *gomock.Call.Return -func (c *MockBackendModelCall) Return(arg0 client.Model, arg1 error) *MockBackendModelCall { - c.Call = c.Call.Return(arg0, arg1) - return c -} - -// Do rewrite *gomock.Call.Do -func (c *MockBackendModelCall) Do(f func() (client.Model, error)) *MockBackendModelCall { - c.Call = c.Call.Do(f) - return c -} - -// DoAndReturn rewrite *gomock.Call.DoAndReturn -func (c *MockBackendModelCall) DoAndReturn(f func() (client.Model, error)) *MockBackendModelCall { - c.Call = c.Call.DoAndReturn(f) - return c -} - // ModelTag mocks base method. func (m *MockBackend) ModelTag() names.ModelTag { m.ctrl.T.Helper() @@ -865,447 +824,3 @@ func (c *MockBackendUnitCall) DoAndReturn(f func(string) (client.Unit, error)) * c.Call = c.Call.DoAndReturn(f) return c } - -// MockModel is a mock of Model interface. -type MockModel struct { - ctrl *gomock.Controller - recorder *MockModelMockRecorder -} - -// MockModelMockRecorder is the mock recorder for MockModel. -type MockModelMockRecorder struct { - mock *MockModel -} - -// NewMockModel creates a new mock instance. -func NewMockModel(ctrl *gomock.Controller) *MockModel { - mock := &MockModel{ctrl: ctrl} - mock.recorder = &MockModelMockRecorder{mock} - return mock -} - -// EXPECT returns an object that allows the caller to indicate expected use. -func (m *MockModel) EXPECT() *MockModelMockRecorder { - return m.recorder -} - -// CloudCredentialTag mocks base method. -func (m *MockModel) CloudCredentialTag() (names.CloudCredentialTag, bool) { - m.ctrl.T.Helper() - ret := m.ctrl.Call(m, "CloudCredentialTag") - ret0, _ := ret[0].(names.CloudCredentialTag) - ret1, _ := ret[1].(bool) - return ret0, ret1 -} - -// CloudCredentialTag indicates an expected call of CloudCredentialTag. -func (mr *MockModelMockRecorder) CloudCredentialTag() *MockModelCloudCredentialTagCall { - mr.mock.ctrl.T.Helper() - call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CloudCredentialTag", reflect.TypeOf((*MockModel)(nil).CloudCredentialTag)) - return &MockModelCloudCredentialTagCall{Call: call} -} - -// MockModelCloudCredentialTagCall wrap *gomock.Call -type MockModelCloudCredentialTagCall struct { - *gomock.Call -} - -// Return rewrite *gomock.Call.Return -func (c *MockModelCloudCredentialTagCall) Return(arg0 names.CloudCredentialTag, arg1 bool) *MockModelCloudCredentialTagCall { - c.Call = c.Call.Return(arg0, arg1) - return c -} - -// Do rewrite *gomock.Call.Do -func (c *MockModelCloudCredentialTagCall) Do(f func() (names.CloudCredentialTag, bool)) *MockModelCloudCredentialTagCall { - c.Call = c.Call.Do(f) - return c -} - -// DoAndReturn rewrite *gomock.Call.DoAndReturn -func (c *MockModelCloudCredentialTagCall) DoAndReturn(f func() (names.CloudCredentialTag, bool)) *MockModelCloudCredentialTagCall { - c.Call = c.Call.DoAndReturn(f) - return c -} - -// CloudName mocks base method. -func (m *MockModel) CloudName() string { - m.ctrl.T.Helper() - ret := m.ctrl.Call(m, "CloudName") - ret0, _ := ret[0].(string) - return ret0 -} - -// CloudName indicates an expected call of CloudName. -func (mr *MockModelMockRecorder) CloudName() *MockModelCloudNameCall { - mr.mock.ctrl.T.Helper() - call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CloudName", reflect.TypeOf((*MockModel)(nil).CloudName)) - return &MockModelCloudNameCall{Call: call} -} - -// MockModelCloudNameCall wrap *gomock.Call -type MockModelCloudNameCall struct { - *gomock.Call -} - -// Return rewrite *gomock.Call.Return -func (c *MockModelCloudNameCall) Return(arg0 string) *MockModelCloudNameCall { - c.Call = c.Call.Return(arg0) - return c -} - -// Do rewrite *gomock.Call.Do -func (c *MockModelCloudNameCall) Do(f func() string) *MockModelCloudNameCall { - c.Call = c.Call.Do(f) - return c -} - -// DoAndReturn rewrite *gomock.Call.DoAndReturn -func (c *MockModelCloudNameCall) DoAndReturn(f func() string) *MockModelCloudNameCall { - c.Call = c.Call.DoAndReturn(f) - return c -} - -// CloudRegion mocks base method. -func (m *MockModel) CloudRegion() string { - m.ctrl.T.Helper() - ret := m.ctrl.Call(m, "CloudRegion") - ret0, _ := ret[0].(string) - return ret0 -} - -// CloudRegion indicates an expected call of CloudRegion. -func (mr *MockModelMockRecorder) CloudRegion() *MockModelCloudRegionCall { - mr.mock.ctrl.T.Helper() - call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CloudRegion", reflect.TypeOf((*MockModel)(nil).CloudRegion)) - return &MockModelCloudRegionCall{Call: call} -} - -// MockModelCloudRegionCall wrap *gomock.Call -type MockModelCloudRegionCall struct { - *gomock.Call -} - -// Return rewrite *gomock.Call.Return -func (c *MockModelCloudRegionCall) Return(arg0 string) *MockModelCloudRegionCall { - c.Call = c.Call.Return(arg0) - return c -} - -// Do rewrite *gomock.Call.Do -func (c *MockModelCloudRegionCall) Do(f func() string) *MockModelCloudRegionCall { - c.Call = c.Call.Do(f) - return c -} - -// DoAndReturn rewrite *gomock.Call.DoAndReturn -func (c *MockModelCloudRegionCall) DoAndReturn(f func() string) *MockModelCloudRegionCall { - c.Call = c.Call.DoAndReturn(f) - return c -} - -// LatestToolsVersion mocks base method. -func (m *MockModel) LatestToolsVersion() version.Number { - m.ctrl.T.Helper() - ret := m.ctrl.Call(m, "LatestToolsVersion") - ret0, _ := ret[0].(version.Number) - return ret0 -} - -// LatestToolsVersion indicates an expected call of LatestToolsVersion. -func (mr *MockModelMockRecorder) LatestToolsVersion() *MockModelLatestToolsVersionCall { - mr.mock.ctrl.T.Helper() - call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "LatestToolsVersion", reflect.TypeOf((*MockModel)(nil).LatestToolsVersion)) - return &MockModelLatestToolsVersionCall{Call: call} -} - -// MockModelLatestToolsVersionCall wrap *gomock.Call -type MockModelLatestToolsVersionCall struct { - *gomock.Call -} - -// Return rewrite *gomock.Call.Return -func (c *MockModelLatestToolsVersionCall) Return(arg0 version.Number) *MockModelLatestToolsVersionCall { - c.Call = c.Call.Return(arg0) - return c -} - -// Do rewrite *gomock.Call.Do -func (c *MockModelLatestToolsVersionCall) Do(f func() version.Number) *MockModelLatestToolsVersionCall { - c.Call = c.Call.Do(f) - return c -} - -// DoAndReturn rewrite *gomock.Call.DoAndReturn -func (c *MockModelLatestToolsVersionCall) DoAndReturn(f func() version.Number) *MockModelLatestToolsVersionCall { - c.Call = c.Call.DoAndReturn(f) - return c -} - -// Life mocks base method. -func (m *MockModel) Life() state.Life { - m.ctrl.T.Helper() - ret := m.ctrl.Call(m, "Life") - ret0, _ := ret[0].(state.Life) - return ret0 -} - -// Life indicates an expected call of Life. -func (mr *MockModelMockRecorder) Life() *MockModelLifeCall { - mr.mock.ctrl.T.Helper() - call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Life", reflect.TypeOf((*MockModel)(nil).Life)) - return &MockModelLifeCall{Call: call} -} - -// MockModelLifeCall wrap *gomock.Call -type MockModelLifeCall struct { - *gomock.Call -} - -// Return rewrite *gomock.Call.Return -func (c *MockModelLifeCall) Return(arg0 state.Life) *MockModelLifeCall { - c.Call = c.Call.Return(arg0) - return c -} - -// Do rewrite *gomock.Call.Do -func (c *MockModelLifeCall) Do(f func() state.Life) *MockModelLifeCall { - c.Call = c.Call.Do(f) - return c -} - -// DoAndReturn rewrite *gomock.Call.DoAndReturn -func (c *MockModelLifeCall) DoAndReturn(f func() state.Life) *MockModelLifeCall { - c.Call = c.Call.DoAndReturn(f) - return c -} - -// Name mocks base method. -func (m *MockModel) Name() string { - m.ctrl.T.Helper() - ret := m.ctrl.Call(m, "Name") - ret0, _ := ret[0].(string) - return ret0 -} - -// Name indicates an expected call of Name. -func (mr *MockModelMockRecorder) Name() *MockModelNameCall { - mr.mock.ctrl.T.Helper() - call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Name", reflect.TypeOf((*MockModel)(nil).Name)) - return &MockModelNameCall{Call: call} -} - -// MockModelNameCall wrap *gomock.Call -type MockModelNameCall struct { - *gomock.Call -} - -// Return rewrite *gomock.Call.Return -func (c *MockModelNameCall) Return(arg0 string) *MockModelNameCall { - c.Call = c.Call.Return(arg0) - return c -} - -// Do rewrite *gomock.Call.Do -func (c *MockModelNameCall) Do(f func() string) *MockModelNameCall { - c.Call = c.Call.Do(f) - return c -} - -// DoAndReturn rewrite *gomock.Call.DoAndReturn -func (c *MockModelNameCall) DoAndReturn(f func() string) *MockModelNameCall { - c.Call = c.Call.DoAndReturn(f) - return c -} - -// Owner mocks base method. -func (m *MockModel) Owner() names.UserTag { - m.ctrl.T.Helper() - ret := m.ctrl.Call(m, "Owner") - ret0, _ := ret[0].(names.UserTag) - return ret0 -} - -// Owner indicates an expected call of Owner. -func (mr *MockModelMockRecorder) Owner() *MockModelOwnerCall { - mr.mock.ctrl.T.Helper() - call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Owner", reflect.TypeOf((*MockModel)(nil).Owner)) - return &MockModelOwnerCall{Call: call} -} - -// MockModelOwnerCall wrap *gomock.Call -type MockModelOwnerCall struct { - *gomock.Call -} - -// Return rewrite *gomock.Call.Return -func (c *MockModelOwnerCall) Return(arg0 names.UserTag) *MockModelOwnerCall { - c.Call = c.Call.Return(arg0) - return c -} - -// Do rewrite *gomock.Call.Do -func (c *MockModelOwnerCall) Do(f func() names.UserTag) *MockModelOwnerCall { - c.Call = c.Call.Do(f) - return c -} - -// DoAndReturn rewrite *gomock.Call.DoAndReturn -func (c *MockModelOwnerCall) DoAndReturn(f func() names.UserTag) *MockModelOwnerCall { - c.Call = c.Call.DoAndReturn(f) - return c -} - -// Status mocks base method. -func (m *MockModel) Status() (status.StatusInfo, error) { - m.ctrl.T.Helper() - ret := m.ctrl.Call(m, "Status") - ret0, _ := ret[0].(status.StatusInfo) - ret1, _ := ret[1].(error) - return ret0, ret1 -} - -// Status indicates an expected call of Status. -func (mr *MockModelMockRecorder) Status() *MockModelStatusCall { - mr.mock.ctrl.T.Helper() - call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Status", reflect.TypeOf((*MockModel)(nil).Status)) - return &MockModelStatusCall{Call: call} -} - -// MockModelStatusCall wrap *gomock.Call -type MockModelStatusCall struct { - *gomock.Call -} - -// Return rewrite *gomock.Call.Return -func (c *MockModelStatusCall) Return(arg0 status.StatusInfo, arg1 error) *MockModelStatusCall { - c.Call = c.Call.Return(arg0, arg1) - return c -} - -// Do rewrite *gomock.Call.Do -func (c *MockModelStatusCall) Do(f func() (status.StatusInfo, error)) *MockModelStatusCall { - c.Call = c.Call.Do(f) - return c -} - -// DoAndReturn rewrite *gomock.Call.DoAndReturn -func (c *MockModelStatusCall) DoAndReturn(f func() (status.StatusInfo, error)) *MockModelStatusCall { - c.Call = c.Call.DoAndReturn(f) - return c -} - -// StatusHistory mocks base method. -func (m *MockModel) StatusHistory(arg0 status.StatusHistoryFilter) ([]status.StatusInfo, error) { - m.ctrl.T.Helper() - ret := m.ctrl.Call(m, "StatusHistory", arg0) - ret0, _ := ret[0].([]status.StatusInfo) - ret1, _ := ret[1].(error) - return ret0, ret1 -} - -// StatusHistory indicates an expected call of StatusHistory. -func (mr *MockModelMockRecorder) StatusHistory(arg0 any) *MockModelStatusHistoryCall { - mr.mock.ctrl.T.Helper() - call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "StatusHistory", reflect.TypeOf((*MockModel)(nil).StatusHistory), arg0) - return &MockModelStatusHistoryCall{Call: call} -} - -// MockModelStatusHistoryCall wrap *gomock.Call -type MockModelStatusHistoryCall struct { - *gomock.Call -} - -// Return rewrite *gomock.Call.Return -func (c *MockModelStatusHistoryCall) Return(arg0 []status.StatusInfo, arg1 error) *MockModelStatusHistoryCall { - c.Call = c.Call.Return(arg0, arg1) - return c -} - -// Do rewrite *gomock.Call.Do -func (c *MockModelStatusHistoryCall) Do(f func(status.StatusHistoryFilter) ([]status.StatusInfo, error)) *MockModelStatusHistoryCall { - c.Call = c.Call.Do(f) - return c -} - -// DoAndReturn rewrite *gomock.Call.DoAndReturn -func (c *MockModelStatusHistoryCall) DoAndReturn(f func(status.StatusHistoryFilter) ([]status.StatusInfo, error)) *MockModelStatusHistoryCall { - c.Call = c.Call.DoAndReturn(f) - return c -} - -// Type mocks base method. -func (m *MockModel) Type() state.ModelType { - m.ctrl.T.Helper() - ret := m.ctrl.Call(m, "Type") - ret0, _ := ret[0].(state.ModelType) - return ret0 -} - -// Type indicates an expected call of Type. -func (mr *MockModelMockRecorder) Type() *MockModelTypeCall { - mr.mock.ctrl.T.Helper() - call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Type", reflect.TypeOf((*MockModel)(nil).Type)) - return &MockModelTypeCall{Call: call} -} - -// MockModelTypeCall wrap *gomock.Call -type MockModelTypeCall struct { - *gomock.Call -} - -// Return rewrite *gomock.Call.Return -func (c *MockModelTypeCall) Return(arg0 state.ModelType) *MockModelTypeCall { - c.Call = c.Call.Return(arg0) - return c -} - -// Do rewrite *gomock.Call.Do -func (c *MockModelTypeCall) Do(f func() state.ModelType) *MockModelTypeCall { - c.Call = c.Call.Do(f) - return c -} - -// DoAndReturn rewrite *gomock.Call.DoAndReturn -func (c *MockModelTypeCall) DoAndReturn(f func() state.ModelType) *MockModelTypeCall { - c.Call = c.Call.DoAndReturn(f) - return c -} - -// UUID mocks base method. -func (m *MockModel) UUID() string { - m.ctrl.T.Helper() - ret := m.ctrl.Call(m, "UUID") - ret0, _ := ret[0].(string) - return ret0 -} - -// UUID indicates an expected call of UUID. -func (mr *MockModelMockRecorder) UUID() *MockModelUUIDCall { - mr.mock.ctrl.T.Helper() - call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UUID", reflect.TypeOf((*MockModel)(nil).UUID)) - return &MockModelUUIDCall{Call: call} -} - -// MockModelUUIDCall wrap *gomock.Call -type MockModelUUIDCall struct { - *gomock.Call -} - -// Return rewrite *gomock.Call.Return -func (c *MockModelUUIDCall) Return(arg0 string) *MockModelUUIDCall { - c.Call = c.Call.Return(arg0) - return c -} - -// Do rewrite *gomock.Call.Do -func (c *MockModelUUIDCall) Do(f func() string) *MockModelUUIDCall { - c.Call = c.Call.Do(f) - return c -} - -// DoAndReturn rewrite *gomock.Call.DoAndReturn -func (c *MockModelUUIDCall) DoAndReturn(f func() string) *MockModelUUIDCall { - c.Call = c.Call.DoAndReturn(f) - return c -} diff --git a/apiserver/facades/client/client/package_test.go b/apiserver/facades/client/client/package_test.go index 37f22da7049..c5afa74ba7a 100644 --- a/apiserver/facades/client/client/package_test.go +++ b/apiserver/facades/client/client/package_test.go @@ -9,8 +9,8 @@ import ( coretesting "github.com/juju/juju/internal/testing" ) -//go:generate go run go.uber.org/mock/mockgen -typed -package client_test -destination package_mock_test.go github.com/juju/juju/apiserver/facades/client/client Backend,Model -//go:generate go run go.uber.org/mock/mockgen -package client_test -destination service_mock_test.go github.com/juju/juju/apiserver/facades/client/client BlockDeviceService,NetworkService +//go:generate go run go.uber.org/mock/mockgen -typed -package client_test -destination package_mock_test.go github.com/juju/juju/apiserver/facades/client/client Backend +//go:generate go run go.uber.org/mock/mockgen -package client -destination service_mock_test.go github.com/juju/juju/apiserver/facades/client/client BlockDeviceService,NetworkService,ModelInfoService //go:generate go run go.uber.org/mock/mockgen -typed -package client_test -destination facade_mock_test.go github.com/juju/juju/apiserver/facade Authorizer //go:generate go run go.uber.org/mock/mockgen -typed -package client_test -destination common_mock_test.go github.com/juju/juju/apiserver/common ToolsFinder func TestPackage(t *stdtesting.T) { diff --git a/apiserver/facades/client/client/service.go b/apiserver/facades/client/client/service.go index 1bfde24a47e..10d73d6ef85 100644 --- a/apiserver/facades/client/client/service.go +++ b/apiserver/facades/client/client/service.go @@ -12,6 +12,7 @@ import ( "github.com/juju/juju/core/model" "github.com/juju/juju/core/network" "github.com/juju/juju/core/unit" + domainmodel "github.com/juju/juju/domain/model" "github.com/juju/juju/domain/port" ) @@ -33,6 +34,10 @@ type NetworkService interface { type ModelInfoService interface { // GetModelInfo returns information about the current model. GetModelInfo(context.Context) (model.ReadOnlyModel, error) + // Status returns the current status of the model. + // The following error types can be expected to be returned: + // - [modelerrors.NotFound]: When the model does not exist. + Status(context.Context) (domainmodel.StatusInfo, error) } // MachineService defines the methods that the facade assumes from the Machine diff --git a/apiserver/facades/client/client/service_mock_test.go b/apiserver/facades/client/client/service_mock_test.go index a5ced1f08e5..94809f27d4b 100644 --- a/apiserver/facades/client/client/service_mock_test.go +++ b/apiserver/facades/client/client/service_mock_test.go @@ -1,20 +1,22 @@ // Code generated by MockGen. DO NOT EDIT. -// Source: github.com/juju/juju/apiserver/facades/client/client (interfaces: BlockDeviceService,NetworkService) +// Source: github.com/juju/juju/apiserver/facades/client/client (interfaces: BlockDeviceService,NetworkService,ModelInfoService) // // Generated by this command: // -// mockgen -package client_test -destination service_mock_test.go github.com/juju/juju/apiserver/facades/client/client BlockDeviceService,NetworkService +// mockgen -package client -destination service_mock_test.go github.com/juju/juju/apiserver/facades/client/client BlockDeviceService,NetworkService,ModelInfoService // -// Package client_test is a generated GoMock package. -package client_test +// Package client is a generated GoMock package. +package client import ( context "context" reflect "reflect" blockdevice "github.com/juju/juju/core/blockdevice" + model "github.com/juju/juju/core/model" network "github.com/juju/juju/core/network" + model0 "github.com/juju/juju/domain/model" gomock "go.uber.org/mock/gomock" ) @@ -108,3 +110,56 @@ func (mr *MockNetworkServiceMockRecorder) GetAllSubnets(arg0 any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetAllSubnets", reflect.TypeOf((*MockNetworkService)(nil).GetAllSubnets), arg0) } + +// MockModelInfoService is a mock of ModelInfoService interface. +type MockModelInfoService struct { + ctrl *gomock.Controller + recorder *MockModelInfoServiceMockRecorder +} + +// MockModelInfoServiceMockRecorder is the mock recorder for MockModelInfoService. +type MockModelInfoServiceMockRecorder struct { + mock *MockModelInfoService +} + +// NewMockModelInfoService creates a new mock instance. +func NewMockModelInfoService(ctrl *gomock.Controller) *MockModelInfoService { + mock := &MockModelInfoService{ctrl: ctrl} + mock.recorder = &MockModelInfoServiceMockRecorder{mock} + return mock +} + +// EXPECT returns an object that allows the caller to indicate expected use. +func (m *MockModelInfoService) EXPECT() *MockModelInfoServiceMockRecorder { + return m.recorder +} + +// GetModelInfo mocks base method. +func (m *MockModelInfoService) GetModelInfo(arg0 context.Context) (model.ReadOnlyModel, error) { + m.ctrl.T.Helper() + ret := m.ctrl.Call(m, "GetModelInfo", arg0) + ret0, _ := ret[0].(model.ReadOnlyModel) + ret1, _ := ret[1].(error) + return ret0, ret1 +} + +// GetModelInfo indicates an expected call of GetModelInfo. +func (mr *MockModelInfoServiceMockRecorder) GetModelInfo(arg0 any) *gomock.Call { + mr.mock.ctrl.T.Helper() + return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetModelInfo", reflect.TypeOf((*MockModelInfoService)(nil).GetModelInfo), arg0) +} + +// Status mocks base method. +func (m *MockModelInfoService) Status(arg0 context.Context) (model0.StatusInfo, error) { + m.ctrl.T.Helper() + ret := m.ctrl.Call(m, "Status", arg0) + ret0, _ := ret[0].(model0.StatusInfo) + ret1, _ := ret[1].(error) + return ret0, ret1 +} + +// Status indicates an expected call of Status. +func (mr *MockModelInfoServiceMockRecorder) Status(arg0 any) *gomock.Call { + mr.mock.ctrl.T.Helper() + return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Status", reflect.TypeOf((*MockModelInfoService)(nil).Status), arg0) +} diff --git a/apiserver/facades/client/client/status.go b/apiserver/facades/client/client/status.go index db423058a27..f026318a93c 100644 --- a/apiserver/facades/client/client/status.go +++ b/apiserver/facades/client/client/status.go @@ -31,8 +31,10 @@ import ( "github.com/juju/juju/core/status" coreunit "github.com/juju/juju/core/unit" machineerrors "github.com/juju/juju/domain/machine/errors" + domainmodelerrors "github.com/juju/juju/domain/model/errors" "github.com/juju/juju/domain/port" "github.com/juju/juju/internal/charm" + internalerrors "github.com/juju/juju/internal/errors" "github.com/juju/juju/rpc/params" "github.com/juju/juju/state" ) @@ -139,20 +141,6 @@ func (c *Client) machineStatusHistory(machineTag names.MachineTag, filter status return agentStatusFromStatusInfo(sInfo, kind), nil } -// modelStatusHistory returns status history for the current model. -func (c *Client) modelStatusHistory(filter status.StatusHistoryFilter) ([]params.DetailedStatus, error) { - m, err := c.stateAccessor.Model() - if err != nil { - return nil, errors.Annotate(err, "cannot get model") - } - - sInfo, err := m.StatusHistory(filter) - if err != nil { - return nil, errors.Trace(err) - } - return agentStatusFromStatusInfo(sInfo, status.KindModel), nil -} - // StatusHistory returns a slice of past statuses for several entities. func (c *Client) StatusHistory(ctx context.Context, request params.StatusHistoryRequests) params.StatusHistoryResults { results := params.StatusHistoryResults{} @@ -189,7 +177,7 @@ func (c *Client) StatusHistory(ctx context.Context, request params.StatusHistory kind := status.HistoryKind(request.Kind) switch kind { case status.KindModel: - hist, err = c.modelStatusHistory(filter) + err = internalerrors.Errorf("model status history not implemented") case status.KindUnit, status.KindWorkload, status.KindUnitAgent: var u names.UnitTag if u, err = names.ParseUnitTag(request.Tag); err == nil { @@ -583,17 +571,22 @@ func (c *Client) modelStatus(ctx context.Context) (params.ModelStatusInfo, error currentVersion := modelInfo.AgentVersion info.Version = currentVersion.String() - m, err := c.stateAccessor.Model() - if err != nil { - return info, errors.Annotate(err, "cannot get model") - } + // // TODO: replace here once we implement the latest agent version in Dqlite. + // m, err := c.stateAccessor.Model() + // if err != nil { + // return info, errors.Annotate(err, "cannot get model") + // } - latestVersion := m.LatestToolsVersion() - if currentVersion.Compare(latestVersion) < 0 { - info.AvailableVersion = latestVersion.String() - } + // latestVersion := m.LatestToolsVersion() + // if currentVersion.Compare(latestVersion) < 0 { + // info.AvailableVersion = latestVersion.String() + // } - aStatus, err := m.Status() + aStatus, err := c.modelInfoService.Status(ctx) + if internalerrors.Is(err, domainmodelerrors.NotFound) { + // This should never happen but just in case. + return params.ModelStatusInfo{}, errors.NotFoundf("model status for %q", modelInfo.Name) + } if err != nil { return params.ModelStatusInfo{}, errors.Annotate(err, "cannot obtain model status info") } @@ -601,8 +594,7 @@ func (c *Client) modelStatus(ctx context.Context) (params.ModelStatusInfo, error info.ModelStatus = params.DetailedStatus{ Status: aStatus.Status.String(), Info: aStatus.Message, - Since: aStatus.Since, - Data: aStatus.Data, + Since: &aStatus.Since, } return info, nil diff --git a/apiserver/facades/client/client/status_test.go b/apiserver/facades/client/client/status_test.go index 05132bfcb74..e6d04f1cca2 100644 --- a/apiserver/facades/client/client/status_test.go +++ b/apiserver/facades/client/client/status_test.go @@ -1,1055 +1,93 @@ -// Copyright 2014 Canonical Ltd. +// Copyright 2024 Canonical Ltd. // Licensed under the AGPLv3, see LICENCE file for details. -package client_test +package client import ( "context" - "fmt" "time" - "github.com/canonical/sqlair" - "github.com/juju/clock" - "github.com/juju/names/v5" + "github.com/juju/errors" + "github.com/juju/testing" jc "github.com/juju/testing/checkers" - "go.uber.org/mock/gomock" + "github.com/juju/version/v2" + gomock "go.uber.org/mock/gomock" gc "gopkg.in/check.v1" - "github.com/juju/juju/api" - apiclient "github.com/juju/juju/api/client/client" - "github.com/juju/juju/apiserver/facades/controller/charmrevisionupdater" - "github.com/juju/juju/apiserver/facades/controller/charmrevisionupdater/mocks" - corearch "github.com/juju/juju/core/arch" - "github.com/juju/juju/core/base" - corecharm "github.com/juju/juju/core/charm" - "github.com/juju/juju/core/instance" - coremachine "github.com/juju/juju/core/machine" - "github.com/juju/juju/core/migration" + "github.com/juju/juju/core/model" coremodel "github.com/juju/juju/core/model" - "github.com/juju/juju/core/network" - "github.com/juju/juju/core/version" + modeltesting "github.com/juju/juju/core/model/testing" + "github.com/juju/juju/core/status" domainmodel "github.com/juju/juju/domain/model" - modelstate "github.com/juju/juju/domain/model/state" - "github.com/juju/juju/environs/config" - "github.com/juju/juju/internal/charm" - "github.com/juju/juju/internal/charmhub/transport" - loggertesting "github.com/juju/juju/internal/logger/testing" - testfactory "github.com/juju/juju/internal/testing/factory" - "github.com/juju/juju/internal/uuid" - "github.com/juju/juju/juju/testing" + domainmodelerrors "github.com/juju/juju/domain/model/errors" "github.com/juju/juju/rpc/params" - "github.com/juju/juju/state" - "github.com/juju/juju/testcharms" ) type statusSuite struct { - baseSuite -} - -var _ = gc.Suite(&statusSuite{}) - -func (s *statusSuite) addMachine(c *gc.C) *state.Machine { - st := s.ControllerModel(c).State() - machine, err := st.AddMachine(state.UbuntuBase("12.10"), state.JobHostUnits) - c.Assert(err, jc.ErrorIsNil) - return machine -} - -// Complete testing of status functionality happens elsewhere in the codebase, -// these tests just sanity-check the api itself. - -func (s *statusSuite) TestFullStatus(c *gc.C) { - machine := s.addMachine(c) - st := s.ControllerModel(c).State() - conn := s.OpenModelAPI(c, st.ModelUUID()) - client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) - status, err := client.Status(context.Background(), nil) - c.Assert(err, jc.ErrorIsNil) - c.Check(status.Model.Name, gc.Equals, "controller") - c.Check(status.Model.Type, gc.Equals, "iaas") - c.Check(status.Model.CloudTag, gc.Equals, "cloud-dummy") - c.Check(status.Applications, gc.HasLen, 0) - c.Check(status.RemoteApplications, gc.HasLen, 0) - c.Check(status.Offers, gc.HasLen, 0) - c.Check(status.Machines, gc.HasLen, 1) - c.Check(status.ControllerTimestamp, gc.NotNil) - resultMachine, ok := status.Machines[machine.Id()] - if !ok { - c.Fatalf("Missing machine with id %q", machine.Id()) - } - c.Check(resultMachine.Id, gc.Equals, machine.Id()) - c.Check(resultMachine.Base, jc.DeepEquals, params.Base{Name: "ubuntu", Channel: "12.10/stable"}) - c.Check(resultMachine.LXDProfiles, gc.HasLen, 0) -} - -func (s *statusSuite) TestFullStatusUnitLeadership(c *gc.C) { - factory, release := s.NewFactory(c, s.ControllerModelUUID()) - release() - - unit := factory.MakeUnit(c, nil) - st := s.ControllerModel(c).State() - claimer, err := s.LeaseManager.Claimer("application-leadership", st.ModelUUID()) - c.Assert(err, jc.ErrorIsNil) - err = claimer.Claim(unit.ApplicationName(), unit.Name(), time.Minute) - c.Assert(err, jc.ErrorIsNil) - conn := s.OpenModelAPI(c, st.ModelUUID()) - client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) - status, err := client.Status(context.Background(), nil) - c.Assert(err, jc.ErrorIsNil) - app, ok := status.Applications[unit.ApplicationName()] - c.Assert(ok, jc.IsTrue) - unitStatus, ok := app.Units[unit.Name()] - c.Assert(ok, jc.IsTrue) - c.Assert(unitStatus.Leader, jc.IsTrue) -} - -func (s *statusSuite) TestFullStatusUnitScaling(c *gc.C) { - factory, release := s.NewFactory(c, s.ControllerModelUUID()) - release() - - machine := factory.MakeMachine(c, nil) - unit := factory.MakeUnit(c, &testfactory.UnitParams{ - Machine: machine, - }) - st := s.ControllerModel(c).State() - tracker := st.TrackQueries("FullStatus") - - conn := s.OpenModelAPI(c, st.ModelUUID()) - client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) - _, err := client.Status(context.Background(), nil) - c.Assert(err, jc.ErrorIsNil) - - queryCount := tracker.ReadCount() - c.Logf("initial query count: %d", queryCount) - - // Add several more units of the same application to the - // same machine. We do this because we want to isolate to - // status handling to just additional units, not additional machines - // or applications. - app, err := unit.Application() - c.Assert(err, jc.ErrorIsNil) - - const numUnits = 5 - for i := 0; i < numUnits; i++ { - factory.MakeUnit(c, &testfactory.UnitParams{ - Application: app, - Machine: machine, - }) - } - - tracker.Reset() - - _, err = client.Status(context.Background(), nil) - c.Assert(err, jc.ErrorIsNil) - - // The number of queries should be the same. - c.Check(tracker.ReadCount(), gc.Equals, queryCount+numUnits*3, - gc.Commentf("if the query count is not the same, there has been a regression "+ - "in the processing of units, please fix it")) -} - -func (s *statusSuite) TestFullStatusMachineScaling(c *gc.C) { - factory, release := s.NewFactory(c, s.ControllerModelUUID()) - release() - - factory.MakeMachine(c, nil) - st := s.ControllerModel(c).State() - tracker := st.TrackQueries("FullStatus") - - conn := s.OpenModelAPI(c, st.ModelUUID()) - client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) - _, err := client.Status(context.Background(), nil) - c.Assert(err, jc.ErrorIsNil) - - queryCount := tracker.ReadCount() - c.Logf("initial query count: %d", queryCount) - - // Add several more machines to the model. - for i := 0; i < 5; i++ { - factory.MakeMachine(c, nil) - } - tracker.Reset() - - _, err = client.Status(context.Background(), nil) - c.Assert(err, jc.ErrorIsNil) - - // The number of queries should be the same. - c.Check(tracker.ReadCount(), gc.Equals, queryCount, - gc.Commentf("if the query count is not the same, there has been a regression "+ - "in the processing of machines, please fix it")) -} - -func (s *statusSuite) TestFullStatusInterfaceScaling(c *gc.C) { - machine := s.addMachine(c) - st := s.ControllerModel(c).State() - tracker := st.TrackQueries("FullStatus") - - conn := s.OpenModelAPI(c, st.ModelUUID()) - client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) - _, err := client.Status(context.Background(), nil) - c.Assert(err, jc.ErrorIsNil) - - queryCount := tracker.ReadCount() - c.Logf("initial query count: %d", queryCount) - - // Add a bunch of interfaces to the machine. - s.createNICWithIP(c, machine, "eth0", "10.0.0.11/24") - s.createNICWithIP(c, machine, "eth1", "10.20.0.42/24") - s.createNICWithIP(c, machine, "eth2", "10.30.0.99/24") - - err = machine.SetDevicesAddresses( - state.LinkLayerDeviceAddress{ - DeviceName: "eth1", - ConfigMethod: network.ConfigStatic, - ProviderNetworkID: "vpc-abcd", - ProviderSubnetID: "prov-ffff", - CIDRAddress: "10.20.0.42/24", - }, - state.LinkLayerDeviceAddress{ - DeviceName: "eth2", - ConfigMethod: network.ConfigStatic, - ProviderNetworkID: "vpc-abcd", - ProviderSubnetID: "prov-abcd", - CIDRAddress: "10.30.0.99/24", - }, - ) - c.Assert(err, jc.ErrorIsNil) - - tracker.Reset() - - _, err = client.Status(context.Background(), nil) - c.Assert(err, jc.ErrorIsNil) - - // The number of queries should be the same. - c.Check(tracker.ReadCount(), gc.Equals, queryCount, - gc.Commentf("if the query count is not the same, there has been a regression "+ - "in the way the addresses are processed")) -} - -func (s *statusSuite) createNICWithIP(c *gc.C, machine *state.Machine, deviceName, cidrAddress string) { - err := machine.SetLinkLayerDevices( - state.LinkLayerDeviceArgs{ - Name: deviceName, - Type: network.EthernetDevice, - ParentName: "", - IsUp: true, - }, - ) - c.Assert(err, jc.ErrorIsNil) - err = machine.SetDevicesAddresses( - state.LinkLayerDeviceAddress{ - DeviceName: deviceName, - CIDRAddress: cidrAddress, - ConfigMethod: network.ConfigStatic, - }, - ) - c.Assert(err, jc.ErrorIsNil) -} - -var _ = gc.Suite(&statusUnitTestSuite{}) - -type statusUnitTestSuite struct { - baseSuite -} - -func (s *statusUnitTestSuite) TestProcessMachinesWithOneMachineAndOneContainer(c *gc.C) { - factory, release := s.NewFactory(c, s.ControllerModelUUID()) - release() - - host := factory.MakeMachine(c, &testfactory.MachineParams{InstanceId: "0"}) - container := factory.MakeMachineNested(c, host.Id(), nil) - - conn := s.OpenControllerModelAPI(c) - client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) - status, err := client.Status(context.Background(), nil) - c.Assert(err, jc.ErrorIsNil) - - c.Check(status.Machines, gc.HasLen, 1) - mStatus, ok := status.Machines[host.Id()] - c.Check(ok, jc.IsTrue) - c.Check(mStatus.Containers, gc.HasLen, 1) - - _, ok = mStatus.Containers[container.Id()] - c.Check(ok, jc.IsTrue) -} - -func (s *statusUnitTestSuite) TestProcessMachinesWithEmbeddedContainers(c *gc.C) { - factory, release := s.NewFactory(c, s.ControllerModelUUID()) - release() - - host := factory.MakeMachine(c, &testfactory.MachineParams{InstanceId: "1"}) - factory.MakeMachineNested(c, host.Id(), nil) - lxdHost := factory.MakeMachineNested(c, host.Id(), nil) - factory.MakeMachineNested(c, lxdHost.Id(), nil) - - conn := s.OpenControllerModelAPI(c) - client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) - status, err := client.Status(context.Background(), nil) - c.Assert(err, jc.ErrorIsNil) - - c.Check(status.Machines, gc.HasLen, 1) - mStatus, ok := status.Machines[host.Id()] - c.Check(ok, jc.IsTrue) - c.Check(mStatus.Containers, gc.HasLen, 2) - - mStatus, ok = mStatus.Containers[lxdHost.Id()] - c.Check(ok, jc.IsTrue) - - c.Check(mStatus.Containers, gc.HasLen, 1) -} - -func (s *statusUnitTestSuite) TestApplicationWithExposedEndpoints(c *gc.C) { - factory, release := s.NewFactory(c, s.ControllerModelUUID()) - release() - - charm := factory.MakeCharm(c, &testfactory.CharmParams{Name: "wordpress", URL: "ch:amd64/wordpress"}) - app := factory.MakeApplication(c, &testfactory.ApplicationParams{Charm: charm}) - err := app.MergeExposeSettings(map[string]state.ExposedEndpoint{ - "": { - ExposeToSpaceIDs: []string{network.AlphaSpaceId}, - ExposeToCIDRs: []string{"10.0.0.0/24", "192.168.0.0/24"}, - }, - }) - c.Assert(err, jc.ErrorIsNil) - - conn := s.OpenControllerModelAPI(c) - client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) - status, err := client.Status(context.Background(), nil) - c.Assert(err, jc.ErrorIsNil) - c.Assert(status, gc.NotNil) - appStatus, ok := status.Applications[app.Name()] - c.Assert(ok, gc.Equals, true) - - c.Assert(appStatus.ExposedEndpoints, gc.DeepEquals, map[string]params.ExposedEndpoint{ - "": { - ExposeToSpaces: []string{network.AlphaSpaceName}, - ExposeToCIDRs: []string{"10.0.0.0/24", "192.168.0.0/24"}, - }, - }) -} - -func defaultCharmOrigin(curlStr string) *state.CharmOrigin { - // Use ParseURL here in test until either the charm and/or application - // can easily provide the same data. - curl, _ := charm.ParseURL(curlStr) - var source string - var channel *state.Channel - if charm.CharmHub.Matches(curl.Schema) { - source = corecharm.CharmHub.String() - channel = &state.Channel{ - Risk: "stable", - } - } else if charm.Local.Matches(curl.Schema) { - source = corecharm.Local.String() - } - - b := base.MustParseBaseFromString("ubuntu@22.04") - - platform := &state.Platform{ - Architecture: corearch.DefaultArchitecture, - OS: b.OS, - Channel: b.Channel.String(), - } - - return &state.CharmOrigin{ - Source: source, - Type: "charm", - Revision: intPtr(curl.Revision), - Channel: channel, - Platform: platform, - } -} - -func intPtr(i int) *int { - return &i -} - -func (s *statusUnitTestSuite) TestSubordinateUpgradingFrom(c *gc.C) { - factory, release := s.NewFactory(c, s.ControllerModelUUID()) - release() - - principalCharm := factory.MakeCharm(c, &testfactory.CharmParams{Name: "mysql", URL: "ch:amd64/mysql"}) - subordCharm := factory.MakeCharm(c, &testfactory.CharmParams{Name: "logging", URL: "ch:amd64/logging-1"}) - subordCharmNew := factory.MakeCharm(c, &testfactory.CharmParams{Name: "logging", URL: "ch:amd64/logging-2"}) - app := factory.MakeApplication(c, &testfactory.ApplicationParams{ - Charm: principalCharm, - Name: "principal", - }) - pu := factory.MakeUnit(c, &testfactory.UnitParams{ - Application: app, - }) - subordApp := factory.MakeApplication(c, &testfactory.ApplicationParams{ - Charm: subordCharm, - CharmOrigin: defaultCharmOrigin(subordCharm.URL()), - Name: "subord", - }) - - subEndpoint, err := subordApp.Endpoint("info") - c.Assert(err, jc.ErrorIsNil) - principalEndpoint, err := app.Endpoint("juju-info") - c.Assert(err, jc.ErrorIsNil) - st := s.ControllerModel(c).State() - rel, err := st.AddRelation(subEndpoint, principalEndpoint) - c.Assert(err, jc.ErrorIsNil) - ru, err := rel.Unit(pu) - c.Assert(err, jc.ErrorIsNil) - err = ru.EnterScope(nil) - c.Assert(err, jc.ErrorIsNil) - subordUnit, err := st.Unit("subord/0") - c.Assert(err, jc.ErrorIsNil) - err = subordUnit.SetCharmURL(subordCharm.URL()) - c.Assert(err, jc.ErrorIsNil) - - conn := s.OpenControllerModelAPI(c) - client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) - status, err := client.Status(context.Background(), nil) - c.Assert(err, jc.ErrorIsNil) - c.Assert(status, gc.NotNil) - unitStatus, ok := status.Applications["principal"].Units["principal/0"].Subordinates["subord/0"] - c.Assert(ok, gc.Equals, true) - c.Assert(unitStatus.Charm, gc.Equals, "") - - err = subordApp.SetCharm(state.SetCharmConfig{ - Charm: subordCharmNew, - CharmOrigin: defaultCharmOrigin(subordCharmNew.URL()), - }, testing.NewObjectStore(c, s.ControllerModelUUID())) - c.Assert(err, jc.ErrorIsNil) - - status, err = client.Status(context.Background(), nil) - c.Assert(err, jc.ErrorIsNil) - c.Assert(status, gc.NotNil) - unitStatus, ok = status.Applications["principal"].Units["principal/0"].Subordinates["subord/0"] - c.Assert(ok, gc.Equals, true) - c.Assert(unitStatus.Charm, gc.Equals, "ch:amd64/logging-1") -} - -func addUnitWithVersion( - c *gc.C, - application *state.Application, - version string, -) *state.Unit { - unit, err := application.AddUnit(state.AddUnitParams{}) - c.Assert(err, jc.ErrorIsNil) - // Ensure that the timestamp on this version record is different - // from the previous one. - // TODO(babbageclunk): when Application and Unit have clocks, change - // that instead of sleeping (lp:1558657) - time.Sleep(time.Millisecond * 1) - err = unit.SetWorkloadVersion(version) - c.Assert(err, jc.ErrorIsNil) - return unit -} - -func (s *statusUnitTestSuite) checkAppVersion(c *gc.C, application *state.Application, expectedVersion string, -) params.ApplicationStatus { - conn := s.OpenControllerModelAPI(c) - client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) - status, err := client.Status(context.Background(), nil) - c.Assert(err, jc.ErrorIsNil) - appStatus, found := status.Applications[application.Name()] - c.Assert(found, jc.IsTrue) - c.Check(appStatus.WorkloadVersion, gc.Equals, expectedVersion) - return appStatus -} - -func checkUnitVersion(c *gc.C, appStatus params.ApplicationStatus, unit *state.Unit, expectedVersion string) { - unitStatus, found := appStatus.Units[unit.Name()] - c.Check(found, jc.IsTrue) - c.Check(unitStatus.WorkloadVersion, gc.Equals, expectedVersion) -} - -func (s *statusUnitTestSuite) TestWorkloadVersionLastWins(c *gc.C) { - factory, release := s.NewFactory(c, s.ControllerModelUUID()) - release() - - application := factory.MakeApplication(c, nil) - unit1 := addUnitWithVersion(c, application, "voltron") - unit2 := addUnitWithVersion(c, application, "voltron") - unit3 := addUnitWithVersion(c, application, "zarkon") - - appStatus := s.checkAppVersion(c, application, "zarkon") - checkUnitVersion(c, appStatus, unit1, "voltron") - checkUnitVersion(c, appStatus, unit2, "voltron") - checkUnitVersion(c, appStatus, unit3, "zarkon") -} - -func (s *statusUnitTestSuite) TestWorkloadVersionSimple(c *gc.C) { - factory, release := s.NewFactory(c, s.ControllerModelUUID()) - release() - - application := factory.MakeApplication(c, nil) - unit1 := addUnitWithVersion(c, application, "voltron") - - appStatus := s.checkAppVersion(c, application, "voltron") - checkUnitVersion(c, appStatus, unit1, "voltron") -} - -func (s *statusUnitTestSuite) TestWorkloadVersionBlanksCanWin(c *gc.C) { - factory, release := s.NewFactory(c, s.ControllerModelUUID()) - release() - - application := factory.MakeApplication(c, nil) - unit1 := addUnitWithVersion(c, application, "voltron") - unit2 := addUnitWithVersion(c, application, "") - - appStatus := s.checkAppVersion(c, application, "") - checkUnitVersion(c, appStatus, unit1, "voltron") - checkUnitVersion(c, appStatus, unit2, "") -} - -func (s *statusUnitTestSuite) TestWorkloadVersionNoUnits(c *gc.C) { - factory, release := s.NewFactory(c, s.ControllerModelUUID()) - release() + testing.IsolationSuite - application := factory.MakeApplication(c, nil) - s.checkAppVersion(c, application, "") + modelUUID coremodel.UUID + modelInfoService *MockModelInfoService } -func (s *statusUnitTestSuite) TestWorkloadVersionOkWithUnset(c *gc.C) { - factory, release := s.NewFactory(c, s.ControllerModelUUID()) - release() +var _ = gc.Suite(&statusSuite{}) - application := factory.MakeApplication(c, nil) - unit, err := application.AddUnit(state.AddUnitParams{}) - c.Assert(err, jc.ErrorIsNil) - appStatus := s.checkAppVersion(c, application, "") - checkUnitVersion(c, appStatus, unit, "") +func (s *statusSuite) setupMocks(c *gc.C) *gomock.Controller { + ctrl := gomock.NewController(c) + s.modelInfoService = NewMockModelInfoService(ctrl) + s.modelUUID = modeltesting.GenModelUUID(c) + return ctrl } -func (s *statusUnitTestSuite) TestMigrationInProgress(c *gc.C) { - // Create a host model because controller models can't be migrated. - factory, release := s.NewFactory(c, s.ControllerModelUUID()) - release() - state2 := factory.MakeModel(c, nil) - defer state2.Close() - - model2, err := state2.Model() - c.Assert(err, jc.ErrorIsNil) - - // Double-write model information to dqlite. - // Add the model to the model database. - err = s.ModelTxnRunner(c, model2.UUID()).Txn(context.Background(), func(ctx context.Context, tx *sqlair.TX) error { - return modelstate.CreateReadOnlyModel(ctx, domainmodel.ReadOnlyModelCreationArgs{ - UUID: coremodel.UUID(model2.UUID()), - Name: model2.Name(), - Cloud: "dummy", - AgentVersion: version.Current, - }, preparer{}, tx) - }) - c.Assert(err, jc.ErrorIsNil) - - // Get API connection to hosted model. - apiInfo := s.ModelApiInfo(model2.UUID()) - apiInfo.Tag = testing.AdminUser - apiInfo.Password = testing.AdminSecret +func (s *statusSuite) TestModelStatus(c *gc.C) { + defer s.setupMocks(c).Finish() - conn, err := api.Open(context.Background(), apiInfo, api.DialOpts{}) - c.Assert(err, jc.ErrorIsNil) - client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) - - checkMigStatus := func(expected string) { - status, err := client.Status(context.Background(), nil) - c.Assert(err, jc.ErrorIsNil) - if expected != "" { - expected = "migrating: " + expected - } - c.Check(status.Model.ModelStatus.Info, gc.Equals, expected) - } - - // Migration status should be empty when no migration is happening. - checkMigStatus("") + now := time.Now() + s.modelInfoService.EXPECT().GetModelInfo(gomock.Any()).Return(model.ReadOnlyModel{ + UUID: s.modelUUID, + Name: "model-name", + Type: model.IAAS, + Cloud: "mycloud", + CloudRegion: "region", + AgentVersion: version.MustParse("4.0.0"), + }, nil) + s.modelInfoService.EXPECT().Status(gomock.Any()).Return(domainmodel.StatusInfo{ + Status: status.Available, + Message: "all good now", + Since: now, + }, nil) - // Start it migrating. - mig, err := state2.CreateMigration(state.MigrationSpec{ - InitiatedBy: names.NewUserTag("admin"), - TargetInfo: migration.TargetInfo{ - ControllerTag: names.NewControllerTag(uuid.MustNewUUID().String()), - Addrs: []string{"1.2.3.4:5555", "4.3.2.1:6666"}, - CACert: "cert", - AuthTag: names.NewUserTag("user"), - Password: "password", + client := &Client{modelInfoService: s.modelInfoService} + statusInfo, err := client.modelStatus(context.Background()) + c.Assert(err, gc.IsNil) + c.Assert(statusInfo, gc.DeepEquals, params.ModelStatusInfo{ + Name: "model-name", + Type: model.IAAS.String(), + CloudTag: "cloud-mycloud", + CloudRegion: "region", + Version: "4.0.0", + ModelStatus: params.DetailedStatus{ + Status: status.Available.String(), + Info: "all good now", + Since: &now, }, }) - c.Assert(err, jc.ErrorIsNil) - - // Check initial message. - checkMigStatus("starting") - - // Check status is reported when set. - setAndCheckMigStatus := func(message string) { - err := mig.SetStatusMessage(message) - c.Assert(err, jc.ErrorIsNil) - checkMigStatus(message) - } - setAndCheckMigStatus("proceeding swimmingly") - setAndCheckMigStatus("oh noes") -} - -func (s *statusUnitTestSuite) TestRelationFiltered(c *gc.C) { - factory, release := s.NewFactory(c, s.ControllerModelUUID()) - release() - // make application 1 with endpoint 1 - wordpress := factory.MakeApplication(c, &testfactory.ApplicationParams{ - Name: "abc", - Charm: factory.MakeCharm(c, &testfactory.CharmParams{ - Name: "wordpress", - }), - }) - wordpressEndpoint, err := wordpress.Endpoint("db") - c.Assert(err, jc.ErrorIsNil) - - // make application 2 with endpoint 2 - mysql := factory.MakeApplication(c, &testfactory.ApplicationParams{ - Name: "def", - Charm: factory.MakeCharm(c, &testfactory.CharmParams{ - Name: "mysql", - }), - }) - mysqlEndpoint, err := mysql.Endpoint("server") - c.Assert(err, jc.ErrorIsNil) - - // create relation between wordpress and mysql - wordpressMysqlRelation := factory.MakeRelation(c, &testfactory.RelationParams{ - Endpoints: []state.Endpoint{wordpressEndpoint, mysqlEndpoint}, - }) - c.Assert(wordpressMysqlRelation, gc.NotNil) - - // create another application 3 with an endpoint 3 - logging := factory.MakeApplication(c, &testfactory.ApplicationParams{ - Charm: factory.MakeCharm(c, &testfactory.CharmParams{Name: "logging"}), - }) - loggingEndpoint, err := logging.Endpoint("info") - c.Assert(err, jc.ErrorIsNil) - - // create endpoint 4 on application 1 - wordpressJujuInfo, err := wordpress.Endpoint("juju-info") - c.Assert(err, jc.ErrorIsNil) - wordpressLoggingRelation := factory.MakeRelation(c, &testfactory.RelationParams{ - Endpoints: []state.Endpoint{loggingEndpoint, wordpressJujuInfo}, - }) - c.Assert(wordpressLoggingRelation, gc.NotNil) - - // Test status filtering with application 1: should get both relations - conn := s.OpenControllerModelAPI(c) - client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) - status, err := client.Status(context.Background(), - &apiclient.StatusArgs{ - Patterns: []string{wordpress.Name()}, - }) - c.Assert(err, jc.ErrorIsNil) - c.Assert(status, gc.NotNil) - assertApplicationRelations(c, wordpress.Name(), 2, status.Relations) - - // test status filtering with application 3: should get 1 relation - status, err = client.Status( - context.Background(), - &apiclient.StatusArgs{ - Patterns: []string{logging.Name()}, - }) - c.Assert(err, jc.ErrorIsNil) - c.Assert(status, gc.NotNil) - assertApplicationRelations(c, logging.Name(), 1, status.Relations) -} - -// TestApplicationFilterIndependentOfAlphabeticUnitOrdering ensures we -// do not regress and are carrying forward fix for lp#1592872. -func (s *statusUnitTestSuite) TestApplicationFilterIndependentOfAlphabeticUnitOrdering(c *gc.C) { - factory, release := s.NewFactory(c, s.ControllerModelUUID()) - release() - // Application A has no touch points with application C - // but will have a unit on the same machine is a unit of an application B. - applicationA := factory.MakeApplication(c, &testfactory.ApplicationParams{ - Charm: factory.MakeCharm(c, &testfactory.CharmParams{ - Name: "mysql", - }), - Name: "abc", - }) - - // Application B will have a unit on the same machine as a unit of an application A - // and will have a relation to an application C. - applicationB := factory.MakeApplication(c, &testfactory.ApplicationParams{ - Charm: factory.MakeCharm(c, &testfactory.CharmParams{ - Name: "wordpress", - }), - Name: "def", - }) - - // Put a unit from each, application A and B, on the same machine. - // This will be enough to ensure that the application B qualifies to be - // in the status result filtered by the application A. - machine := factory.MakeMachine(c, &testfactory.MachineParams{ - Jobs: []state.MachineJob{state.JobHostUnits}, - }) - factory.MakeUnit(c, &testfactory.UnitParams{ - Application: applicationA, - Machine: machine, - }) - factory.MakeUnit(c, &testfactory.UnitParams{ - Application: applicationB, - Machine: machine, - }) - - conn := s.OpenControllerModelAPI(c) - client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) - for i := 0; i < 20; i++ { - c.Logf("run %d", i) - status, err := client.Status( - context.Background(), - &apiclient.StatusArgs{ - Patterns: []string{applicationA.Name()}, - }) - c.Assert(err, jc.ErrorIsNil) - c.Check(status.Applications, gc.HasLen, 2) - } -} - -// TestFilterOutRelationsForRelatedApplicationsThatDoNotMatchCriteriaDirectly -// tests scenario where applications are returned as part of the status because -// they are related to an application that matches given filter. -// However, the relations for these applications should not be returned. -// In other words, if there are two applications, A and B, such that: -// -// * an application A matches the supplied filter directly; -// * an application B has units on the same machine as units of an application A and, thus, -// qualifies to be returned by the status result; -// -// application B's relations should not be returned. -func (s *statusUnitTestSuite) TestFilterOutRelationsForRelatedApplicationsThatDoNotMatchCriteriaDirectly(c *gc.C) { - factory, release := s.NewFactory(c, s.ControllerModelUUID()) - release() - // Application A has no touch points with application C - // but will have a unit on the same machine is a unit of an application B. - applicationA := factory.MakeApplication(c, &testfactory.ApplicationParams{ - Charm: factory.MakeCharm(c, &testfactory.CharmParams{ - Name: "mysql", - }), - }) - - // Application B will have a unit on the same machine as a unit of an application A - // and will have a relation to an application C. - applicationB := factory.MakeApplication(c, &testfactory.ApplicationParams{ - Charm: factory.MakeCharm(c, &testfactory.CharmParams{ - Name: "wordpress", - }), - }) - endpoint1, err := applicationB.Endpoint("juju-info") - c.Assert(err, jc.ErrorIsNil) - - // Application C has a relation to application B but has no touch points with - // an application A. - applicationC := factory.MakeApplication(c, &testfactory.ApplicationParams{ - Charm: factory.MakeCharm(c, &testfactory.CharmParams{Name: "logging"}), - }) - endpoint2, err := applicationC.Endpoint("info") - c.Assert(err, jc.ErrorIsNil) - factory.MakeRelation(c, &testfactory.RelationParams{ - Endpoints: []state.Endpoint{endpoint2, endpoint1}, - }) - - // Put a unit from each, application A and B, on the same machine. - // This will be enough to ensure that the application B qualifies to be - // in the status result filtered by the application A. - machine := factory.MakeMachine(c, &testfactory.MachineParams{ - Jobs: []state.MachineJob{state.JobHostUnits}, - }) - factory.MakeUnit(c, &testfactory.UnitParams{ - Application: applicationA, - Machine: machine, - }) - factory.MakeUnit(c, &testfactory.UnitParams{ - Application: applicationB, - Machine: machine, - }) - - // Filtering status on application A should get: - // * no relations; - // * two applications. - conn := s.OpenControllerModelAPI(c) - client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) - status, err := client.Status( - context.Background(), - &apiclient.StatusArgs{ - Patterns: []string{applicationA.Name()}, - }) - c.Assert(err, jc.ErrorIsNil) - c.Assert(status, gc.NotNil) - c.Check(status.Applications, gc.HasLen, 2) - c.Check(status.Relations, gc.HasLen, 0) -} - -func (s *statusUnitTestSuite) TestMachineWithNoDisplayNameHasItsEmptyDisplayNameSent(c *gc.C) { - factory, release := s.NewFactory(c, s.ControllerModelUUID()) - release() - - machine := factory.MakeMachine(c, &testfactory.MachineParams{ - InstanceId: "i-123", - }) - - conn := s.OpenControllerModelAPI(c) - client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) - status, err := client.Status(context.Background(), nil) - c.Assert(err, jc.ErrorIsNil) - c.Assert(status.Machines, gc.HasLen, 1) - c.Assert(status.Machines[machine.Id()].DisplayName, gc.Equals, "") -} - -func (s *statusUnitTestSuite) TestMachineWithDisplayNameHasItsDisplayNameSent(c *gc.C) { - factory, release := s.NewFactory(c, s.ControllerModelUUID()) - release() - - machine := factory.MakeMachine(c, &testfactory.MachineParams{ - InstanceId: "i-123", - DisplayName: "snowflake", - }) - machineService := s.ControllerDomainServices(c).Machine() - machineUUID, err := machineService.CreateMachine(context.Background(), coremachine.Name("0")) - c.Assert(err, jc.ErrorIsNil) - err = machineService.SetMachineCloudInstance(context.Background(), machineUUID, instance.Id("i-123"), "snowflake", nil) - c.Assert(err, jc.ErrorIsNil) - - conn := s.OpenControllerModelAPI(c) - client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) - status, err := client.Status(context.Background(), nil) - c.Assert(err, jc.ErrorIsNil) - c.Assert(status.Machines, gc.HasLen, 1) - c.Assert(status.Machines[machine.Id()].DisplayName, gc.Equals, "snowflake") -} - -func assertApplicationRelations(c *gc.C, appName string, expectedNumber int, relations []params.RelationStatus) { - c.Check(relations, gc.HasLen, expectedNumber) - for _, relation := range relations { - belongs := false - for _, endpoint := range relation.Endpoints { - if endpoint.ApplicationName == appName { - belongs = true - continue - } - } - if !belongs { - c.Fatalf("application %v is not part of the relation %v as expected", appName, relation.Id) - } - } -} - -func (s *statusUnitTestSuite) TestUnitsWithOpenedPortsSent(c *gc.C) { - factory, release := s.NewFactory(c, s.ControllerModelUUID()) - release() - - app := factory.MakeApplication(c, &testfactory.ApplicationParams{ - Charm: factory.MakeCharm(c, &testfactory.CharmParams{ - Name: "wordpress", - }), - }) - _ = factory.MakeUnit(c, &testfactory.UnitParams{ - Application: app, - }) - - appService := s.ControllerDomainServices(c).Application() - - unitUUID, err := appService.GetUnitUUID(context.Background(), "wordpress/0") - c.Assert(err, jc.ErrorIsNil) - - portService := s.ControllerDomainServices(c).Port() - err = portService.UpdateUnitPorts(context.Background(), unitUUID, network.GroupedPortRanges{ - "": []network.PortRange{network.MustParsePortRange("1000/tcp")}, - "db": []network.PortRange{network.MustParsePortRange("2000/tcp")}, - }, network.GroupedPortRanges{}) - c.Assert(err, jc.ErrorIsNil) - - conn := s.OpenControllerModelAPI(c) - client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) - status, err := client.Status(context.Background(), &apiclient.StatusArgs{}) - c.Assert(err, jc.ErrorIsNil) - c.Assert(status, gc.NotNil) - c.Assert(status.Applications, gc.HasLen, 1) - c.Assert(status.Applications["wordpress"].Units, gc.HasLen, 1) - c.Assert(status.Applications["wordpress"].Units["wordpress/0"].OpenedPorts, gc.DeepEquals, []string{"1000/tcp", "2000/tcp"}) } -type statusUpgradeUnitSuite struct { - testing.ApiServerSuite - - charms map[string]*state.Charm - charmrevisionupdater *charmrevisionupdater.CharmRevisionUpdaterAPI - ctrl *gomock.Controller -} +func (s *statusSuite) TestModelStatusModelNotFound(c *gc.C) { + defer s.setupMocks(c).Finish() -var _ = gc.Suite(&statusUpgradeUnitSuite{}) - -func (s *statusUpgradeUnitSuite) SetUpTest(c *gc.C) { - s.ApiServerSuite.WithLeaseManager = true - s.ApiServerSuite.SetUpTest(c) - s.charms = make(map[string]*state.Charm) - - state := charmrevisionupdater.StateShim{State: s.ControllerModel(c).State()} - s.ctrl = gomock.NewController(c) - charmhubClient := mocks.NewMockCharmhubRefreshClient(s.ctrl) - charmhubClient.EXPECT().RefreshWithRequestMetrics(gomock.Any(), gomock.Any(), - gomock.Any()).Return([]transport.RefreshResponse{ - {Entity: transport.RefreshEntity{Revision: 42}}, + s.modelInfoService.EXPECT().GetModelInfo(gomock.Any()).Return(model.ReadOnlyModel{ + UUID: s.modelUUID, + Name: "model-name", + Type: model.IAAS, + Cloud: "mycloud", + CloudRegion: "region", + AgentVersion: version.MustParse("4.0.0"), }, nil) - newCharmhubClient := func(context.Context) (charmrevisionupdater.CharmhubRefreshClient, error) { - return charmhubClient, nil - } - modelConfigService := mocks.NewMockModelConfigService(s.ctrl) - cfg, err := config.New(config.UseDefaults, map[string]interface{}{ - "name": "model", - "type": "type", - "uuid": s.DefaultModelUUID, - }) - c.Assert(err, jc.ErrorIsNil) - modelConfigService.EXPECT().ModelConfig(gomock.Any()).Return(cfg, nil) - - s.charmrevisionupdater, err = charmrevisionupdater.NewCharmRevisionUpdaterAPIState( - state, - testing.NewObjectStore(c, s.ControllerModelUUID()), - clock.WallClock, - modelConfigService, - newCharmhubClient, loggertesting.WrapCheckLog(c)) - c.Assert(err, jc.ErrorIsNil) -} - -func (s *statusUpgradeUnitSuite) TearDownTest(c *gc.C) { - s.ApiServerSuite.TearDownTest(c) - s.ctrl.Finish() -} - -// AddMachine adds a new machine to state. -func (s *statusUpgradeUnitSuite) AddMachine(c *gc.C, machineId string, job state.MachineJob) { - st := s.ControllerModel(c).State() - machine, err := st.AddOneMachine(state.MachineTemplate{ - Base: state.UbuntuBase("12.10"), - Jobs: []state.MachineJob{job}, - }) - c.Assert(err, jc.ErrorIsNil) - c.Assert(machine.Id(), gc.Equals, machineId) -} - -// AddCharmhubCharmWithRevision adds a charmhub charm with the specified revision to state. -func (s *statusUpgradeUnitSuite) AddCharmhubCharmWithRevision(c *gc.C, charmName string, rev int) *state.Charm { - ch := testcharms.Hub.CharmDir(charmName) - name := ch.Meta().Name - curl := fmt.Sprintf("ch:amd64/%s-%d", name, rev) - info := state.CharmInfo{ - Charm: ch, - ID: curl, - StoragePath: "dummy-path", - SHA256: fmt.Sprintf("%s-%d-sha256", name, rev), - } - dummy, err := s.ControllerModel(c).State().AddCharm(info) - c.Assert(err, jc.ErrorIsNil) - s.charms[name] = dummy - return dummy -} - -// AddApplication adds an application for the specified charm to state. -func (s *statusUpgradeUnitSuite) AddApplication(c *gc.C, charmName, applicationName string) { - ch, ok := s.charms[charmName] - c.Assert(ok, jc.IsTrue) - revision := ch.Revision() - - st := s.ControllerModel(c).State() - _, err := st.AddApplication(state.AddApplicationArgs{ - Name: applicationName, - Charm: ch, - CharmURL: ch.URL(), - CharmOrigin: &state.CharmOrigin{ - ID: "mycharmhubid", - Hash: "mycharmhash", - Source: "charm-hub", - Platform: &state.Platform{ - Architecture: "amd64", - OS: "ubuntu", - Channel: "12.10/stable", - }, - Revision: &revision, - Channel: &state.Channel{ - Track: "latest", - Risk: "stable", - }, - }, - }, testing.NewObjectStore(c, s.ControllerModelUUID())) - c.Assert(err, jc.ErrorIsNil) -} - -// AddUnit adds a new unit for application to the specified machine. -func (s *statusUpgradeUnitSuite) AddUnit(c *gc.C, appName, machineId string) { - app, err := s.ControllerModel(c).State().Application(appName) - c.Assert(err, jc.ErrorIsNil) - unit, err := app.AddUnit(state.AddUnitParams{}) - c.Assert(err, jc.ErrorIsNil) - machine, err := s.ControllerModel(c).State().Machine(machineId) - c.Assert(err, jc.ErrorIsNil) - err = unit.AssignToMachine(machine) - c.Assert(err, jc.ErrorIsNil) -} - -// SetUnitRevision sets the unit's charm to the specified revision. -func (s *statusUpgradeUnitSuite) SetUnitRevision(c *gc.C, unitName string, rev int) { - unit, err := s.ControllerModel(c).State().Unit(unitName) - c.Assert(err, jc.ErrorIsNil) - svc, err := unit.Application() - c.Assert(err, jc.ErrorIsNil) - curl := fmt.Sprintf("ch:amd64/%s-%d", svc.Name(), rev) - err = unit.SetCharmURL(curl) - c.Assert(err, jc.ErrorIsNil) -} - -// SetupScenario adds some machines and applications to state. -// It assumes a controller machine has already been created. -func (s *statusUpgradeUnitSuite) SetupScenario(c *gc.C) { - s.AddMachine(c, "1", state.JobHostUnits) - s.AddMachine(c, "2", state.JobHostUnits) - s.AddMachine(c, "3", state.JobHostUnits) - - // mysql is out of date - s.AddCharmhubCharmWithRevision(c, "mysql", 22) - s.AddApplication(c, "mysql", "mysql") - s.AddUnit(c, "mysql", "1") - - // wordpress is up to date - s.AddCharmhubCharmWithRevision(c, "wordpress", 26) - s.AddApplication(c, "wordpress", "wordpress") - s.AddUnit(c, "wordpress", "2") - s.AddUnit(c, "wordpress", "2") - // wordpress/0 has a version, wordpress/1 is unknown - s.SetUnitRevision(c, "wordpress/0", 26) - - // varnish is a charm that does not have a version in the mock store. - s.AddCharmhubCharmWithRevision(c, "varnish", 5) - s.AddApplication(c, "varnish", "varnish") - s.AddUnit(c, "varnish", "3") -} - -func (s *statusUpgradeUnitSuite) TestUpdateRevisionsCharmhub(c *gc.C) { - s.AddMachine(c, "0", state.JobManageModel) - s.AddMachine(c, "1", state.JobHostUnits) - s.AddCharmhubCharmWithRevision(c, "charmhubby", 41) - s.AddApplication(c, "charmhubby", "charmhubby") - s.AddUnit(c, "charmhubby", "1") - - conn := s.OpenControllerModelAPI(c) - client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) - status, _ := client.Status(context.Background(), nil) - - appStatus, ok := status.Applications["charmhubby"] - c.Assert(ok, gc.Equals, true) - c.Assert(appStatus.CanUpgradeTo, gc.Equals, "") - - // Update to the latest available charm revision. - result, err := s.charmrevisionupdater.UpdateLatestRevisions(context.Background()) - c.Assert(err, jc.ErrorIsNil) - c.Assert(result.Error, gc.IsNil) - - // Check if CanUpgradeTo suggests the latest revision. - status, _ = client.Status(context.Background(), nil) - appStatus, ok = status.Applications["charmhubby"] - c.Assert(ok, gc.Equals, true) - c.Assert(appStatus.CanUpgradeTo, gc.Equals, "ch:amd64/charmhubby-42") -} - -type preparer struct{} + s.modelInfoService.EXPECT().Status(gomock.Any()).Return(domainmodel.StatusInfo{}, domainmodelerrors.NotFound) -func (p preparer) Prepare(query string, args ...any) (*sqlair.Statement, error) { - return sqlair.Prepare(query, args...) + client := &Client{modelInfoService: s.modelInfoService} + _, err := client.modelStatus(context.Background()) + c.Assert(err, jc.ErrorIs, errors.NotFound) } diff --git a/apiserver/facades/client/client/statushistory_test.go b/apiserver/facades/client/client/statushistory_test.go index 676c1b4f3ab..f89c725142b 100644 --- a/apiserver/facades/client/client/statushistory_test.go +++ b/apiserver/facades/client/client/statushistory_test.go @@ -234,6 +234,8 @@ func (s *statusHistoryTestSuite) TestStatusHistoryCombined(c *gc.C) { } func (s *statusHistoryTestSuite) TestStatusHistoryModelOnly(c *gc.C) { + c.Skip("TODO: Dqlite model status is not implemented") + s.st.modelHistory = statusInfoWithDates([]status.StatusInfo{ { Status: status.Active, @@ -263,10 +265,6 @@ type mockState struct { modelHistory []status.StatusInfo } -func (m *mockState) Model() (Model, error) { - return &mockModel{status: m.modelHistory}, nil -} - func (m *mockState) ModelUUID() string { return "uuid" } @@ -298,15 +296,6 @@ func (m *mockState) Application(name string) (Application, error) { }, nil } -type mockModel struct { - status statuses - Model -} - -func (m mockModel) StatusHistory(filter status.StatusHistoryFilter) ([]status.StatusInfo, error) { - return m.status.StatusHistory(filter) -} - type mockApplication struct { status statuses Application diff --git a/apiserver/facades/client/client/statuslegacy_test.go b/apiserver/facades/client/client/statuslegacy_test.go new file mode 100644 index 00000000000..57039341614 --- /dev/null +++ b/apiserver/facades/client/client/statuslegacy_test.go @@ -0,0 +1,1057 @@ +// Copyright 2014 Canonical Ltd. +// Licensed under the AGPLv3, see LICENCE file for details. + +package client_test + +import ( + "context" + "fmt" + "time" + + "github.com/canonical/sqlair" + "github.com/juju/clock" + "github.com/juju/names/v5" + jc "github.com/juju/testing/checkers" + "go.uber.org/mock/gomock" + gc "gopkg.in/check.v1" + + "github.com/juju/juju/api" + apiclient "github.com/juju/juju/api/client/client" + "github.com/juju/juju/apiserver/facades/controller/charmrevisionupdater" + "github.com/juju/juju/apiserver/facades/controller/charmrevisionupdater/mocks" + corearch "github.com/juju/juju/core/arch" + "github.com/juju/juju/core/base" + corecharm "github.com/juju/juju/core/charm" + "github.com/juju/juju/core/instance" + coremachine "github.com/juju/juju/core/machine" + "github.com/juju/juju/core/migration" + coremodel "github.com/juju/juju/core/model" + "github.com/juju/juju/core/network" + "github.com/juju/juju/core/version" + domainmodel "github.com/juju/juju/domain/model" + modelstate "github.com/juju/juju/domain/model/state" + "github.com/juju/juju/environs/config" + "github.com/juju/juju/internal/charm" + "github.com/juju/juju/internal/charmhub/transport" + loggertesting "github.com/juju/juju/internal/logger/testing" + testfactory "github.com/juju/juju/internal/testing/factory" + "github.com/juju/juju/internal/uuid" + "github.com/juju/juju/juju/testing" + "github.com/juju/juju/rpc/params" + "github.com/juju/juju/state" + "github.com/juju/juju/testcharms" +) + +type statusSuite struct { + baseSuite +} + +var _ = gc.Suite(&statusSuite{}) + +func (s *statusSuite) addMachine(c *gc.C) *state.Machine { + st := s.ControllerModel(c).State() + machine, err := st.AddMachine(state.UbuntuBase("12.10"), state.JobHostUnits) + c.Assert(err, jc.ErrorIsNil) + return machine +} + +// Complete testing of status functionality happens elsewhere in the codebase, +// these tests just sanity-check the api itself. + +func (s *statusSuite) TestFullStatus(c *gc.C) { + machine := s.addMachine(c) + st := s.ControllerModel(c).State() + conn := s.OpenModelAPI(c, st.ModelUUID()) + client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) + status, err := client.Status(context.Background(), nil) + c.Assert(err, jc.ErrorIsNil) + c.Check(status.Model.Name, gc.Equals, "controller") + c.Check(status.Model.Type, gc.Equals, "iaas") + c.Check(status.Model.CloudTag, gc.Equals, "cloud-dummy") + c.Check(status.Applications, gc.HasLen, 0) + c.Check(status.RemoteApplications, gc.HasLen, 0) + c.Check(status.Offers, gc.HasLen, 0) + c.Check(status.Machines, gc.HasLen, 1) + c.Check(status.ControllerTimestamp, gc.NotNil) + resultMachine, ok := status.Machines[machine.Id()] + if !ok { + c.Fatalf("Missing machine with id %q", machine.Id()) + } + c.Check(resultMachine.Id, gc.Equals, machine.Id()) + c.Check(resultMachine.Base, jc.DeepEquals, params.Base{Name: "ubuntu", Channel: "12.10/stable"}) + c.Check(resultMachine.LXDProfiles, gc.HasLen, 0) +} + +func (s *statusSuite) TestFullStatusUnitLeadership(c *gc.C) { + factory, release := s.NewFactory(c, s.ControllerModelUUID()) + release() + + unit := factory.MakeUnit(c, nil) + st := s.ControllerModel(c).State() + claimer, err := s.LeaseManager.Claimer("application-leadership", st.ModelUUID()) + c.Assert(err, jc.ErrorIsNil) + err = claimer.Claim(unit.ApplicationName(), unit.Name(), time.Minute) + c.Assert(err, jc.ErrorIsNil) + conn := s.OpenModelAPI(c, st.ModelUUID()) + client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) + status, err := client.Status(context.Background(), nil) + c.Assert(err, jc.ErrorIsNil) + app, ok := status.Applications[unit.ApplicationName()] + c.Assert(ok, jc.IsTrue) + unitStatus, ok := app.Units[unit.Name()] + c.Assert(ok, jc.IsTrue) + c.Assert(unitStatus.Leader, jc.IsTrue) +} + +func (s *statusSuite) TestFullStatusUnitScaling(c *gc.C) { + factory, release := s.NewFactory(c, s.ControllerModelUUID()) + release() + + machine := factory.MakeMachine(c, nil) + unit := factory.MakeUnit(c, &testfactory.UnitParams{ + Machine: machine, + }) + st := s.ControllerModel(c).State() + tracker := st.TrackQueries("FullStatus") + + conn := s.OpenModelAPI(c, st.ModelUUID()) + client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) + _, err := client.Status(context.Background(), nil) + c.Assert(err, jc.ErrorIsNil) + + queryCount := tracker.ReadCount() + c.Logf("initial query count: %d", queryCount) + + // Add several more units of the same application to the + // same machine. We do this because we want to isolate to + // status handling to just additional units, not additional machines + // or applications. + app, err := unit.Application() + c.Assert(err, jc.ErrorIsNil) + + const numUnits = 5 + for i := 0; i < numUnits; i++ { + factory.MakeUnit(c, &testfactory.UnitParams{ + Application: app, + Machine: machine, + }) + } + + tracker.Reset() + + _, err = client.Status(context.Background(), nil) + c.Assert(err, jc.ErrorIsNil) + + // The number of queries should be the same. + c.Check(tracker.ReadCount(), gc.Equals, queryCount+numUnits*3, + gc.Commentf("if the query count is not the same, there has been a regression "+ + "in the processing of units, please fix it")) +} + +func (s *statusSuite) TestFullStatusMachineScaling(c *gc.C) { + factory, release := s.NewFactory(c, s.ControllerModelUUID()) + release() + + factory.MakeMachine(c, nil) + st := s.ControllerModel(c).State() + tracker := st.TrackQueries("FullStatus") + + conn := s.OpenModelAPI(c, st.ModelUUID()) + client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) + _, err := client.Status(context.Background(), nil) + c.Assert(err, jc.ErrorIsNil) + + queryCount := tracker.ReadCount() + c.Logf("initial query count: %d", queryCount) + + // Add several more machines to the model. + for i := 0; i < 5; i++ { + factory.MakeMachine(c, nil) + } + tracker.Reset() + + _, err = client.Status(context.Background(), nil) + c.Assert(err, jc.ErrorIsNil) + + // The number of queries should be the same. + c.Check(tracker.ReadCount(), gc.Equals, queryCount, + gc.Commentf("if the query count is not the same, there has been a regression "+ + "in the processing of machines, please fix it")) +} + +func (s *statusSuite) TestFullStatusInterfaceScaling(c *gc.C) { + machine := s.addMachine(c) + st := s.ControllerModel(c).State() + tracker := st.TrackQueries("FullStatus") + + conn := s.OpenModelAPI(c, st.ModelUUID()) + client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) + _, err := client.Status(context.Background(), nil) + c.Assert(err, jc.ErrorIsNil) + + queryCount := tracker.ReadCount() + c.Logf("initial query count: %d", queryCount) + + // Add a bunch of interfaces to the machine. + s.createNICWithIP(c, machine, "eth0", "10.0.0.11/24") + s.createNICWithIP(c, machine, "eth1", "10.20.0.42/24") + s.createNICWithIP(c, machine, "eth2", "10.30.0.99/24") + + err = machine.SetDevicesAddresses( + state.LinkLayerDeviceAddress{ + DeviceName: "eth1", + ConfigMethod: network.ConfigStatic, + ProviderNetworkID: "vpc-abcd", + ProviderSubnetID: "prov-ffff", + CIDRAddress: "10.20.0.42/24", + }, + state.LinkLayerDeviceAddress{ + DeviceName: "eth2", + ConfigMethod: network.ConfigStatic, + ProviderNetworkID: "vpc-abcd", + ProviderSubnetID: "prov-abcd", + CIDRAddress: "10.30.0.99/24", + }, + ) + c.Assert(err, jc.ErrorIsNil) + + tracker.Reset() + + _, err = client.Status(context.Background(), nil) + c.Assert(err, jc.ErrorIsNil) + + // The number of queries should be the same. + c.Check(tracker.ReadCount(), gc.Equals, queryCount, + gc.Commentf("if the query count is not the same, there has been a regression "+ + "in the way the addresses are processed")) +} + +func (s *statusSuite) createNICWithIP(c *gc.C, machine *state.Machine, deviceName, cidrAddress string) { + err := machine.SetLinkLayerDevices( + state.LinkLayerDeviceArgs{ + Name: deviceName, + Type: network.EthernetDevice, + ParentName: "", + IsUp: true, + }, + ) + c.Assert(err, jc.ErrorIsNil) + err = machine.SetDevicesAddresses( + state.LinkLayerDeviceAddress{ + DeviceName: deviceName, + CIDRAddress: cidrAddress, + ConfigMethod: network.ConfigStatic, + }, + ) + c.Assert(err, jc.ErrorIsNil) +} + +var _ = gc.Suite(&statusUnitTestSuite{}) + +type statusUnitTestSuite struct { + baseSuite +} + +func (s *statusUnitTestSuite) TestProcessMachinesWithOneMachineAndOneContainer(c *gc.C) { + factory, release := s.NewFactory(c, s.ControllerModelUUID()) + release() + + host := factory.MakeMachine(c, &testfactory.MachineParams{InstanceId: "0"}) + container := factory.MakeMachineNested(c, host.Id(), nil) + + conn := s.OpenControllerModelAPI(c) + client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) + status, err := client.Status(context.Background(), nil) + c.Assert(err, jc.ErrorIsNil) + + c.Check(status.Machines, gc.HasLen, 1) + mStatus, ok := status.Machines[host.Id()] + c.Check(ok, jc.IsTrue) + c.Check(mStatus.Containers, gc.HasLen, 1) + + _, ok = mStatus.Containers[container.Id()] + c.Check(ok, jc.IsTrue) +} + +func (s *statusUnitTestSuite) TestProcessMachinesWithEmbeddedContainers(c *gc.C) { + factory, release := s.NewFactory(c, s.ControllerModelUUID()) + release() + + host := factory.MakeMachine(c, &testfactory.MachineParams{InstanceId: "1"}) + factory.MakeMachineNested(c, host.Id(), nil) + lxdHost := factory.MakeMachineNested(c, host.Id(), nil) + factory.MakeMachineNested(c, lxdHost.Id(), nil) + + conn := s.OpenControllerModelAPI(c) + client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) + status, err := client.Status(context.Background(), nil) + c.Assert(err, jc.ErrorIsNil) + + c.Check(status.Machines, gc.HasLen, 1) + mStatus, ok := status.Machines[host.Id()] + c.Check(ok, jc.IsTrue) + c.Check(mStatus.Containers, gc.HasLen, 2) + + mStatus, ok = mStatus.Containers[lxdHost.Id()] + c.Check(ok, jc.IsTrue) + + c.Check(mStatus.Containers, gc.HasLen, 1) +} + +func (s *statusUnitTestSuite) TestApplicationWithExposedEndpoints(c *gc.C) { + factory, release := s.NewFactory(c, s.ControllerModelUUID()) + release() + + charm := factory.MakeCharm(c, &testfactory.CharmParams{Name: "wordpress", URL: "ch:amd64/wordpress"}) + app := factory.MakeApplication(c, &testfactory.ApplicationParams{Charm: charm}) + err := app.MergeExposeSettings(map[string]state.ExposedEndpoint{ + "": { + ExposeToSpaceIDs: []string{network.AlphaSpaceId}, + ExposeToCIDRs: []string{"10.0.0.0/24", "192.168.0.0/24"}, + }, + }) + c.Assert(err, jc.ErrorIsNil) + + conn := s.OpenControllerModelAPI(c) + client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) + status, err := client.Status(context.Background(), nil) + c.Assert(err, jc.ErrorIsNil) + c.Assert(status, gc.NotNil) + appStatus, ok := status.Applications[app.Name()] + c.Assert(ok, gc.Equals, true) + + c.Assert(appStatus.ExposedEndpoints, gc.DeepEquals, map[string]params.ExposedEndpoint{ + "": { + ExposeToSpaces: []string{network.AlphaSpaceName}, + ExposeToCIDRs: []string{"10.0.0.0/24", "192.168.0.0/24"}, + }, + }) +} + +func defaultCharmOrigin(curlStr string) *state.CharmOrigin { + // Use ParseURL here in test until either the charm and/or application + // can easily provide the same data. + curl, _ := charm.ParseURL(curlStr) + var source string + var channel *state.Channel + if charm.CharmHub.Matches(curl.Schema) { + source = corecharm.CharmHub.String() + channel = &state.Channel{ + Risk: "stable", + } + } else if charm.Local.Matches(curl.Schema) { + source = corecharm.Local.String() + } + + b := base.MustParseBaseFromString("ubuntu@22.04") + + platform := &state.Platform{ + Architecture: corearch.DefaultArchitecture, + OS: b.OS, + Channel: b.Channel.String(), + } + + return &state.CharmOrigin{ + Source: source, + Type: "charm", + Revision: intPtr(curl.Revision), + Channel: channel, + Platform: platform, + } +} + +func intPtr(i int) *int { + return &i +} + +func (s *statusUnitTestSuite) TestSubordinateUpgradingFrom(c *gc.C) { + factory, release := s.NewFactory(c, s.ControllerModelUUID()) + release() + + principalCharm := factory.MakeCharm(c, &testfactory.CharmParams{Name: "mysql", URL: "ch:amd64/mysql"}) + subordCharm := factory.MakeCharm(c, &testfactory.CharmParams{Name: "logging", URL: "ch:amd64/logging-1"}) + subordCharmNew := factory.MakeCharm(c, &testfactory.CharmParams{Name: "logging", URL: "ch:amd64/logging-2"}) + app := factory.MakeApplication(c, &testfactory.ApplicationParams{ + Charm: principalCharm, + Name: "principal", + }) + pu := factory.MakeUnit(c, &testfactory.UnitParams{ + Application: app, + }) + subordApp := factory.MakeApplication(c, &testfactory.ApplicationParams{ + Charm: subordCharm, + CharmOrigin: defaultCharmOrigin(subordCharm.URL()), + Name: "subord", + }) + + subEndpoint, err := subordApp.Endpoint("info") + c.Assert(err, jc.ErrorIsNil) + principalEndpoint, err := app.Endpoint("juju-info") + c.Assert(err, jc.ErrorIsNil) + st := s.ControllerModel(c).State() + rel, err := st.AddRelation(subEndpoint, principalEndpoint) + c.Assert(err, jc.ErrorIsNil) + ru, err := rel.Unit(pu) + c.Assert(err, jc.ErrorIsNil) + err = ru.EnterScope(nil) + c.Assert(err, jc.ErrorIsNil) + subordUnit, err := st.Unit("subord/0") + c.Assert(err, jc.ErrorIsNil) + err = subordUnit.SetCharmURL(subordCharm.URL()) + c.Assert(err, jc.ErrorIsNil) + + conn := s.OpenControllerModelAPI(c) + client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) + status, err := client.Status(context.Background(), nil) + c.Assert(err, jc.ErrorIsNil) + c.Assert(status, gc.NotNil) + unitStatus, ok := status.Applications["principal"].Units["principal/0"].Subordinates["subord/0"] + c.Assert(ok, gc.Equals, true) + c.Assert(unitStatus.Charm, gc.Equals, "") + + err = subordApp.SetCharm(state.SetCharmConfig{ + Charm: subordCharmNew, + CharmOrigin: defaultCharmOrigin(subordCharmNew.URL()), + }, testing.NewObjectStore(c, s.ControllerModelUUID())) + c.Assert(err, jc.ErrorIsNil) + + status, err = client.Status(context.Background(), nil) + c.Assert(err, jc.ErrorIsNil) + c.Assert(status, gc.NotNil) + unitStatus, ok = status.Applications["principal"].Units["principal/0"].Subordinates["subord/0"] + c.Assert(ok, gc.Equals, true) + c.Assert(unitStatus.Charm, gc.Equals, "ch:amd64/logging-1") +} + +func addUnitWithVersion( + c *gc.C, + application *state.Application, + version string, +) *state.Unit { + unit, err := application.AddUnit(state.AddUnitParams{}) + c.Assert(err, jc.ErrorIsNil) + // Ensure that the timestamp on this version record is different + // from the previous one. + // TODO(babbageclunk): when Application and Unit have clocks, change + // that instead of sleeping (lp:1558657) + time.Sleep(time.Millisecond * 1) + err = unit.SetWorkloadVersion(version) + c.Assert(err, jc.ErrorIsNil) + return unit +} + +func (s *statusUnitTestSuite) checkAppVersion(c *gc.C, application *state.Application, expectedVersion string, +) params.ApplicationStatus { + conn := s.OpenControllerModelAPI(c) + client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) + status, err := client.Status(context.Background(), nil) + c.Assert(err, jc.ErrorIsNil) + appStatus, found := status.Applications[application.Name()] + c.Assert(found, jc.IsTrue) + c.Check(appStatus.WorkloadVersion, gc.Equals, expectedVersion) + return appStatus +} + +func checkUnitVersion(c *gc.C, appStatus params.ApplicationStatus, unit *state.Unit, expectedVersion string) { + unitStatus, found := appStatus.Units[unit.Name()] + c.Check(found, jc.IsTrue) + c.Check(unitStatus.WorkloadVersion, gc.Equals, expectedVersion) +} + +func (s *statusUnitTestSuite) TestWorkloadVersionLastWins(c *gc.C) { + factory, release := s.NewFactory(c, s.ControllerModelUUID()) + release() + + application := factory.MakeApplication(c, nil) + unit1 := addUnitWithVersion(c, application, "voltron") + unit2 := addUnitWithVersion(c, application, "voltron") + unit3 := addUnitWithVersion(c, application, "zarkon") + + appStatus := s.checkAppVersion(c, application, "zarkon") + checkUnitVersion(c, appStatus, unit1, "voltron") + checkUnitVersion(c, appStatus, unit2, "voltron") + checkUnitVersion(c, appStatus, unit3, "zarkon") +} + +func (s *statusUnitTestSuite) TestWorkloadVersionSimple(c *gc.C) { + factory, release := s.NewFactory(c, s.ControllerModelUUID()) + release() + + application := factory.MakeApplication(c, nil) + unit1 := addUnitWithVersion(c, application, "voltron") + + appStatus := s.checkAppVersion(c, application, "voltron") + checkUnitVersion(c, appStatus, unit1, "voltron") +} + +func (s *statusUnitTestSuite) TestWorkloadVersionBlanksCanWin(c *gc.C) { + factory, release := s.NewFactory(c, s.ControllerModelUUID()) + release() + + application := factory.MakeApplication(c, nil) + unit1 := addUnitWithVersion(c, application, "voltron") + unit2 := addUnitWithVersion(c, application, "") + + appStatus := s.checkAppVersion(c, application, "") + checkUnitVersion(c, appStatus, unit1, "voltron") + checkUnitVersion(c, appStatus, unit2, "") +} + +func (s *statusUnitTestSuite) TestWorkloadVersionNoUnits(c *gc.C) { + factory, release := s.NewFactory(c, s.ControllerModelUUID()) + release() + + application := factory.MakeApplication(c, nil) + s.checkAppVersion(c, application, "") +} + +func (s *statusUnitTestSuite) TestWorkloadVersionOkWithUnset(c *gc.C) { + factory, release := s.NewFactory(c, s.ControllerModelUUID()) + release() + + application := factory.MakeApplication(c, nil) + unit, err := application.AddUnit(state.AddUnitParams{}) + c.Assert(err, jc.ErrorIsNil) + appStatus := s.checkAppVersion(c, application, "") + checkUnitVersion(c, appStatus, unit, "") +} + +func (s *statusUnitTestSuite) TestMigrationInProgress(c *gc.C) { + c.Skip("TODO: reimplement once we support model migration in dqlite") + + // Create a host model because controller models can't be migrated. + factory, release := s.NewFactory(c, s.ControllerModelUUID()) + release() + state2 := factory.MakeModel(c, nil) + defer state2.Close() + + model2, err := state2.Model() + c.Assert(err, jc.ErrorIsNil) + + // Double-write model information to dqlite. + // Add the model to the model database. + err = s.ModelTxnRunner(c, model2.UUID()).Txn(context.Background(), func(ctx context.Context, tx *sqlair.TX) error { + return modelstate.CreateReadOnlyModel(ctx, domainmodel.ReadOnlyModelCreationArgs{ + UUID: coremodel.UUID(model2.UUID()), + Name: model2.Name(), + Cloud: "dummy", + AgentVersion: version.Current, + }, preparer{}, tx) + }) + c.Assert(err, jc.ErrorIsNil) + + // Get API connection to hosted model. + apiInfo := s.ModelApiInfo(model2.UUID()) + apiInfo.Tag = testing.AdminUser + apiInfo.Password = testing.AdminSecret + + conn, err := api.Open(context.Background(), apiInfo, api.DialOpts{}) + c.Assert(err, jc.ErrorIsNil) + client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) + + checkMigStatus := func(expected string) { + status, err := client.Status(context.Background(), nil) + c.Assert(err, jc.ErrorIsNil) + if expected != "" { + expected = "migrating: " + expected + } + c.Check(status.Model.ModelStatus.Info, gc.Equals, expected) + } + + // Migration status should be empty when no migration is happening. + checkMigStatus("") + + // Start it migrating. + mig, err := state2.CreateMigration(state.MigrationSpec{ + InitiatedBy: names.NewUserTag("admin"), + TargetInfo: migration.TargetInfo{ + ControllerTag: names.NewControllerTag(uuid.MustNewUUID().String()), + Addrs: []string{"1.2.3.4:5555", "4.3.2.1:6666"}, + CACert: "cert", + AuthTag: names.NewUserTag("user"), + Password: "password", + }, + }) + c.Assert(err, jc.ErrorIsNil) + + // Check initial message. + checkMigStatus("starting") + + // Check status is reported when set. + setAndCheckMigStatus := func(message string) { + err := mig.SetStatusMessage(message) + c.Assert(err, jc.ErrorIsNil) + checkMigStatus(message) + } + setAndCheckMigStatus("proceeding swimmingly") + setAndCheckMigStatus("oh noes") +} + +func (s *statusUnitTestSuite) TestRelationFiltered(c *gc.C) { + factory, release := s.NewFactory(c, s.ControllerModelUUID()) + release() + // make application 1 with endpoint 1 + wordpress := factory.MakeApplication(c, &testfactory.ApplicationParams{ + Name: "abc", + Charm: factory.MakeCharm(c, &testfactory.CharmParams{ + Name: "wordpress", + }), + }) + wordpressEndpoint, err := wordpress.Endpoint("db") + c.Assert(err, jc.ErrorIsNil) + + // make application 2 with endpoint 2 + mysql := factory.MakeApplication(c, &testfactory.ApplicationParams{ + Name: "def", + Charm: factory.MakeCharm(c, &testfactory.CharmParams{ + Name: "mysql", + }), + }) + mysqlEndpoint, err := mysql.Endpoint("server") + c.Assert(err, jc.ErrorIsNil) + + // create relation between wordpress and mysql + wordpressMysqlRelation := factory.MakeRelation(c, &testfactory.RelationParams{ + Endpoints: []state.Endpoint{wordpressEndpoint, mysqlEndpoint}, + }) + c.Assert(wordpressMysqlRelation, gc.NotNil) + + // create another application 3 with an endpoint 3 + logging := factory.MakeApplication(c, &testfactory.ApplicationParams{ + Charm: factory.MakeCharm(c, &testfactory.CharmParams{Name: "logging"}), + }) + loggingEndpoint, err := logging.Endpoint("info") + c.Assert(err, jc.ErrorIsNil) + + // create endpoint 4 on application 1 + wordpressJujuInfo, err := wordpress.Endpoint("juju-info") + c.Assert(err, jc.ErrorIsNil) + wordpressLoggingRelation := factory.MakeRelation(c, &testfactory.RelationParams{ + Endpoints: []state.Endpoint{loggingEndpoint, wordpressJujuInfo}, + }) + c.Assert(wordpressLoggingRelation, gc.NotNil) + + // Test status filtering with application 1: should get both relations + conn := s.OpenControllerModelAPI(c) + client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) + status, err := client.Status(context.Background(), + &apiclient.StatusArgs{ + Patterns: []string{wordpress.Name()}, + }) + c.Assert(err, jc.ErrorIsNil) + c.Assert(status, gc.NotNil) + assertApplicationRelations(c, wordpress.Name(), 2, status.Relations) + + // test status filtering with application 3: should get 1 relation + status, err = client.Status( + context.Background(), + &apiclient.StatusArgs{ + Patterns: []string{logging.Name()}, + }) + c.Assert(err, jc.ErrorIsNil) + c.Assert(status, gc.NotNil) + assertApplicationRelations(c, logging.Name(), 1, status.Relations) +} + +// TestApplicationFilterIndependentOfAlphabeticUnitOrdering ensures we +// do not regress and are carrying forward fix for lp#1592872. +func (s *statusUnitTestSuite) TestApplicationFilterIndependentOfAlphabeticUnitOrdering(c *gc.C) { + factory, release := s.NewFactory(c, s.ControllerModelUUID()) + release() + // Application A has no touch points with application C + // but will have a unit on the same machine is a unit of an application B. + applicationA := factory.MakeApplication(c, &testfactory.ApplicationParams{ + Charm: factory.MakeCharm(c, &testfactory.CharmParams{ + Name: "mysql", + }), + Name: "abc", + }) + + // Application B will have a unit on the same machine as a unit of an application A + // and will have a relation to an application C. + applicationB := factory.MakeApplication(c, &testfactory.ApplicationParams{ + Charm: factory.MakeCharm(c, &testfactory.CharmParams{ + Name: "wordpress", + }), + Name: "def", + }) + + // Put a unit from each, application A and B, on the same machine. + // This will be enough to ensure that the application B qualifies to be + // in the status result filtered by the application A. + machine := factory.MakeMachine(c, &testfactory.MachineParams{ + Jobs: []state.MachineJob{state.JobHostUnits}, + }) + factory.MakeUnit(c, &testfactory.UnitParams{ + Application: applicationA, + Machine: machine, + }) + factory.MakeUnit(c, &testfactory.UnitParams{ + Application: applicationB, + Machine: machine, + }) + + conn := s.OpenControllerModelAPI(c) + client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) + for i := 0; i < 20; i++ { + c.Logf("run %d", i) + status, err := client.Status( + context.Background(), + &apiclient.StatusArgs{ + Patterns: []string{applicationA.Name()}, + }) + c.Assert(err, jc.ErrorIsNil) + c.Check(status.Applications, gc.HasLen, 2) + } +} + +// TestFilterOutRelationsForRelatedApplicationsThatDoNotMatchCriteriaDirectly +// tests scenario where applications are returned as part of the status because +// they are related to an application that matches given filter. +// However, the relations for these applications should not be returned. +// In other words, if there are two applications, A and B, such that: +// +// * an application A matches the supplied filter directly; +// * an application B has units on the same machine as units of an application A and, thus, +// qualifies to be returned by the status result; +// +// application B's relations should not be returned. +func (s *statusUnitTestSuite) TestFilterOutRelationsForRelatedApplicationsThatDoNotMatchCriteriaDirectly(c *gc.C) { + factory, release := s.NewFactory(c, s.ControllerModelUUID()) + release() + // Application A has no touch points with application C + // but will have a unit on the same machine is a unit of an application B. + applicationA := factory.MakeApplication(c, &testfactory.ApplicationParams{ + Charm: factory.MakeCharm(c, &testfactory.CharmParams{ + Name: "mysql", + }), + }) + + // Application B will have a unit on the same machine as a unit of an application A + // and will have a relation to an application C. + applicationB := factory.MakeApplication(c, &testfactory.ApplicationParams{ + Charm: factory.MakeCharm(c, &testfactory.CharmParams{ + Name: "wordpress", + }), + }) + endpoint1, err := applicationB.Endpoint("juju-info") + c.Assert(err, jc.ErrorIsNil) + + // Application C has a relation to application B but has no touch points with + // an application A. + applicationC := factory.MakeApplication(c, &testfactory.ApplicationParams{ + Charm: factory.MakeCharm(c, &testfactory.CharmParams{Name: "logging"}), + }) + endpoint2, err := applicationC.Endpoint("info") + c.Assert(err, jc.ErrorIsNil) + factory.MakeRelation(c, &testfactory.RelationParams{ + Endpoints: []state.Endpoint{endpoint2, endpoint1}, + }) + + // Put a unit from each, application A and B, on the same machine. + // This will be enough to ensure that the application B qualifies to be + // in the status result filtered by the application A. + machine := factory.MakeMachine(c, &testfactory.MachineParams{ + Jobs: []state.MachineJob{state.JobHostUnits}, + }) + factory.MakeUnit(c, &testfactory.UnitParams{ + Application: applicationA, + Machine: machine, + }) + factory.MakeUnit(c, &testfactory.UnitParams{ + Application: applicationB, + Machine: machine, + }) + + // Filtering status on application A should get: + // * no relations; + // * two applications. + conn := s.OpenControllerModelAPI(c) + client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) + status, err := client.Status( + context.Background(), + &apiclient.StatusArgs{ + Patterns: []string{applicationA.Name()}, + }) + c.Assert(err, jc.ErrorIsNil) + c.Assert(status, gc.NotNil) + c.Check(status.Applications, gc.HasLen, 2) + c.Check(status.Relations, gc.HasLen, 0) +} + +func (s *statusUnitTestSuite) TestMachineWithNoDisplayNameHasItsEmptyDisplayNameSent(c *gc.C) { + factory, release := s.NewFactory(c, s.ControllerModelUUID()) + release() + + machine := factory.MakeMachine(c, &testfactory.MachineParams{ + InstanceId: "i-123", + }) + + conn := s.OpenControllerModelAPI(c) + client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) + status, err := client.Status(context.Background(), nil) + c.Assert(err, jc.ErrorIsNil) + c.Assert(status.Machines, gc.HasLen, 1) + c.Assert(status.Machines[machine.Id()].DisplayName, gc.Equals, "") +} + +func (s *statusUnitTestSuite) TestMachineWithDisplayNameHasItsDisplayNameSent(c *gc.C) { + factory, release := s.NewFactory(c, s.ControllerModelUUID()) + release() + + machine := factory.MakeMachine(c, &testfactory.MachineParams{ + InstanceId: "i-123", + DisplayName: "snowflake", + }) + machineService := s.ControllerDomainServices(c).Machine() + machineUUID, err := machineService.CreateMachine(context.Background(), coremachine.Name("0")) + c.Assert(err, jc.ErrorIsNil) + err = machineService.SetMachineCloudInstance(context.Background(), machineUUID, instance.Id("i-123"), "snowflake", nil) + c.Assert(err, jc.ErrorIsNil) + + conn := s.OpenControllerModelAPI(c) + client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) + status, err := client.Status(context.Background(), nil) + c.Assert(err, jc.ErrorIsNil) + c.Assert(status.Machines, gc.HasLen, 1) + c.Assert(status.Machines[machine.Id()].DisplayName, gc.Equals, "snowflake") +} + +func assertApplicationRelations(c *gc.C, appName string, expectedNumber int, relations []params.RelationStatus) { + c.Check(relations, gc.HasLen, expectedNumber) + for _, relation := range relations { + belongs := false + for _, endpoint := range relation.Endpoints { + if endpoint.ApplicationName == appName { + belongs = true + continue + } + } + if !belongs { + c.Fatalf("application %v is not part of the relation %v as expected", appName, relation.Id) + } + } +} + +func (s *statusUnitTestSuite) TestUnitsWithOpenedPortsSent(c *gc.C) { + factory, release := s.NewFactory(c, s.ControllerModelUUID()) + release() + + app := factory.MakeApplication(c, &testfactory.ApplicationParams{ + Charm: factory.MakeCharm(c, &testfactory.CharmParams{ + Name: "wordpress", + }), + }) + _ = factory.MakeUnit(c, &testfactory.UnitParams{ + Application: app, + }) + + appService := s.ControllerDomainServices(c).Application() + + unitUUID, err := appService.GetUnitUUID(context.Background(), "wordpress/0") + c.Assert(err, jc.ErrorIsNil) + + portService := s.ControllerDomainServices(c).Port() + err = portService.UpdateUnitPorts(context.Background(), unitUUID, network.GroupedPortRanges{ + "": []network.PortRange{network.MustParsePortRange("1000/tcp")}, + "db": []network.PortRange{network.MustParsePortRange("2000/tcp")}, + }, network.GroupedPortRanges{}) + c.Assert(err, jc.ErrorIsNil) + + conn := s.OpenControllerModelAPI(c) + client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) + status, err := client.Status(context.Background(), &apiclient.StatusArgs{}) + c.Assert(err, jc.ErrorIsNil) + c.Assert(status, gc.NotNil) + c.Assert(status.Applications, gc.HasLen, 1) + c.Assert(status.Applications["wordpress"].Units, gc.HasLen, 1) + c.Assert(status.Applications["wordpress"].Units["wordpress/0"].OpenedPorts, gc.DeepEquals, []string{"1000/tcp", "2000/tcp"}) +} + +type statusUpgradeUnitSuite struct { + testing.ApiServerSuite + + charms map[string]*state.Charm + charmrevisionupdater *charmrevisionupdater.CharmRevisionUpdaterAPI + ctrl *gomock.Controller +} + +var _ = gc.Suite(&statusUpgradeUnitSuite{}) + +func (s *statusUpgradeUnitSuite) SetUpTest(c *gc.C) { + s.ApiServerSuite.WithLeaseManager = true + s.ApiServerSuite.SetUpTest(c) + s.charms = make(map[string]*state.Charm) + + state := charmrevisionupdater.StateShim{State: s.ControllerModel(c).State()} + s.ctrl = gomock.NewController(c) + charmhubClient := mocks.NewMockCharmhubRefreshClient(s.ctrl) + charmhubClient.EXPECT().RefreshWithRequestMetrics(gomock.Any(), gomock.Any(), + gomock.Any()).Return([]transport.RefreshResponse{ + {Entity: transport.RefreshEntity{Revision: 42}}, + }, nil) + newCharmhubClient := func(context.Context) (charmrevisionupdater.CharmhubRefreshClient, error) { + return charmhubClient, nil + } + modelConfigService := mocks.NewMockModelConfigService(s.ctrl) + cfg, err := config.New(config.UseDefaults, map[string]interface{}{ + "name": "model", + "type": "type", + "uuid": s.DefaultModelUUID, + }) + c.Assert(err, jc.ErrorIsNil) + modelConfigService.EXPECT().ModelConfig(gomock.Any()).Return(cfg, nil) + + s.charmrevisionupdater, err = charmrevisionupdater.NewCharmRevisionUpdaterAPIState( + state, + testing.NewObjectStore(c, s.ControllerModelUUID()), + clock.WallClock, + modelConfigService, + newCharmhubClient, loggertesting.WrapCheckLog(c)) + c.Assert(err, jc.ErrorIsNil) +} + +func (s *statusUpgradeUnitSuite) TearDownTest(c *gc.C) { + s.ApiServerSuite.TearDownTest(c) + s.ctrl.Finish() +} + +// AddMachine adds a new machine to state. +func (s *statusUpgradeUnitSuite) AddMachine(c *gc.C, machineId string, job state.MachineJob) { + st := s.ControllerModel(c).State() + machine, err := st.AddOneMachine(state.MachineTemplate{ + Base: state.UbuntuBase("12.10"), + Jobs: []state.MachineJob{job}, + }) + c.Assert(err, jc.ErrorIsNil) + c.Assert(machine.Id(), gc.Equals, machineId) +} + +// AddCharmhubCharmWithRevision adds a charmhub charm with the specified revision to state. +func (s *statusUpgradeUnitSuite) AddCharmhubCharmWithRevision(c *gc.C, charmName string, rev int) *state.Charm { + ch := testcharms.Hub.CharmDir(charmName) + name := ch.Meta().Name + curl := fmt.Sprintf("ch:amd64/%s-%d", name, rev) + info := state.CharmInfo{ + Charm: ch, + ID: curl, + StoragePath: "dummy-path", + SHA256: fmt.Sprintf("%s-%d-sha256", name, rev), + } + dummy, err := s.ControllerModel(c).State().AddCharm(info) + c.Assert(err, jc.ErrorIsNil) + s.charms[name] = dummy + return dummy +} + +// AddApplication adds an application for the specified charm to state. +func (s *statusUpgradeUnitSuite) AddApplication(c *gc.C, charmName, applicationName string) { + ch, ok := s.charms[charmName] + c.Assert(ok, jc.IsTrue) + revision := ch.Revision() + + st := s.ControllerModel(c).State() + _, err := st.AddApplication(state.AddApplicationArgs{ + Name: applicationName, + Charm: ch, + CharmURL: ch.URL(), + CharmOrigin: &state.CharmOrigin{ + ID: "mycharmhubid", + Hash: "mycharmhash", + Source: "charm-hub", + Platform: &state.Platform{ + Architecture: "amd64", + OS: "ubuntu", + Channel: "12.10/stable", + }, + Revision: &revision, + Channel: &state.Channel{ + Track: "latest", + Risk: "stable", + }, + }, + }, testing.NewObjectStore(c, s.ControllerModelUUID())) + c.Assert(err, jc.ErrorIsNil) +} + +// AddUnit adds a new unit for application to the specified machine. +func (s *statusUpgradeUnitSuite) AddUnit(c *gc.C, appName, machineId string) { + app, err := s.ControllerModel(c).State().Application(appName) + c.Assert(err, jc.ErrorIsNil) + unit, err := app.AddUnit(state.AddUnitParams{}) + c.Assert(err, jc.ErrorIsNil) + machine, err := s.ControllerModel(c).State().Machine(machineId) + c.Assert(err, jc.ErrorIsNil) + err = unit.AssignToMachine(machine) + c.Assert(err, jc.ErrorIsNil) +} + +// SetUnitRevision sets the unit's charm to the specified revision. +func (s *statusUpgradeUnitSuite) SetUnitRevision(c *gc.C, unitName string, rev int) { + unit, err := s.ControllerModel(c).State().Unit(unitName) + c.Assert(err, jc.ErrorIsNil) + svc, err := unit.Application() + c.Assert(err, jc.ErrorIsNil) + curl := fmt.Sprintf("ch:amd64/%s-%d", svc.Name(), rev) + err = unit.SetCharmURL(curl) + c.Assert(err, jc.ErrorIsNil) +} + +// SetupScenario adds some machines and applications to state. +// It assumes a controller machine has already been created. +func (s *statusUpgradeUnitSuite) SetupScenario(c *gc.C) { + s.AddMachine(c, "1", state.JobHostUnits) + s.AddMachine(c, "2", state.JobHostUnits) + s.AddMachine(c, "3", state.JobHostUnits) + + // mysql is out of date + s.AddCharmhubCharmWithRevision(c, "mysql", 22) + s.AddApplication(c, "mysql", "mysql") + s.AddUnit(c, "mysql", "1") + + // wordpress is up to date + s.AddCharmhubCharmWithRevision(c, "wordpress", 26) + s.AddApplication(c, "wordpress", "wordpress") + s.AddUnit(c, "wordpress", "2") + s.AddUnit(c, "wordpress", "2") + // wordpress/0 has a version, wordpress/1 is unknown + s.SetUnitRevision(c, "wordpress/0", 26) + + // varnish is a charm that does not have a version in the mock store. + s.AddCharmhubCharmWithRevision(c, "varnish", 5) + s.AddApplication(c, "varnish", "varnish") + s.AddUnit(c, "varnish", "3") +} + +func (s *statusUpgradeUnitSuite) TestUpdateRevisionsCharmhub(c *gc.C) { + s.AddMachine(c, "0", state.JobManageModel) + s.AddMachine(c, "1", state.JobHostUnits) + s.AddCharmhubCharmWithRevision(c, "charmhubby", 41) + s.AddApplication(c, "charmhubby", "charmhubby") + s.AddUnit(c, "charmhubby", "1") + + conn := s.OpenControllerModelAPI(c) + client := apiclient.NewClient(conn, loggertesting.WrapCheckLog(c)) + status, _ := client.Status(context.Background(), nil) + + appStatus, ok := status.Applications["charmhubby"] + c.Assert(ok, gc.Equals, true) + c.Assert(appStatus.CanUpgradeTo, gc.Equals, "") + + // Update to the latest available charm revision. + result, err := s.charmrevisionupdater.UpdateLatestRevisions(context.Background()) + c.Assert(err, jc.ErrorIsNil) + c.Assert(result.Error, gc.IsNil) + + // Check if CanUpgradeTo suggests the latest revision. + status, _ = client.Status(context.Background(), nil) + appStatus, ok = status.Applications["charmhubby"] + c.Assert(ok, gc.Equals, true) + c.Assert(appStatus.CanUpgradeTo, gc.Equals, "ch:amd64/charmhubby-42") +} + +type preparer struct{} + +func (p preparer) Prepare(query string, args ...any) (*sqlair.Statement, error) { + return sqlair.Prepare(query, args...) +} diff --git a/domain/model/service/modelservice.go b/domain/model/service/modelservice.go index 9a71701da43..84ec8a833a1 100644 --- a/domain/model/service/modelservice.go +++ b/domain/model/service/modelservice.go @@ -58,6 +58,7 @@ func NewModelService( modelID: modelID, controllerSt: controllerSt, modelSt: modelSt, + clock: clock.WallClock, } }