2018-07-04 17:24:49 +02:00
|
|
|
package remote
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"context"
|
|
|
|
"encoding/base64"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
|
|
|
"math/rand"
|
2018-08-30 22:18:43 +02:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2018-07-04 17:24:49 +02:00
|
|
|
|
|
|
|
tfe "github.com/hashicorp/go-tfe"
|
|
|
|
)
|
|
|
|
|
2018-08-30 22:18:43 +02:00
|
|
|
type mockClient struct {
|
|
|
|
ConfigurationVersions *mockConfigurationVersions
|
|
|
|
Organizations *mockOrganizations
|
|
|
|
Plans *mockPlans
|
|
|
|
Runs *mockRuns
|
|
|
|
StateVersions *mockStateVersions
|
|
|
|
Workspaces *mockWorkspaces
|
|
|
|
}
|
|
|
|
|
|
|
|
func newMockClient() *mockClient {
|
|
|
|
c := &mockClient{}
|
|
|
|
c.ConfigurationVersions = newMockConfigurationVersions(c)
|
|
|
|
c.Organizations = newMockOrganizations(c)
|
|
|
|
c.Plans = newMockPlans(c)
|
|
|
|
c.Runs = newMockRuns(c)
|
|
|
|
c.StateVersions = newMockStateVersions(c)
|
|
|
|
c.Workspaces = newMockWorkspaces(c)
|
|
|
|
return c
|
|
|
|
}
|
|
|
|
|
2018-07-04 17:24:49 +02:00
|
|
|
type mockConfigurationVersions struct {
|
2018-08-30 22:18:43 +02:00
|
|
|
client *mockClient
|
2018-07-04 17:24:49 +02:00
|
|
|
configVersions map[string]*tfe.ConfigurationVersion
|
2018-08-30 22:18:43 +02:00
|
|
|
uploadPaths map[string]string
|
2018-07-04 17:24:49 +02:00
|
|
|
uploadURLs map[string]*tfe.ConfigurationVersion
|
|
|
|
}
|
|
|
|
|
2018-08-30 22:18:43 +02:00
|
|
|
func newMockConfigurationVersions(client *mockClient) *mockConfigurationVersions {
|
2018-07-04 17:24:49 +02:00
|
|
|
return &mockConfigurationVersions{
|
2018-08-30 22:18:43 +02:00
|
|
|
client: client,
|
2018-07-04 17:24:49 +02:00
|
|
|
configVersions: make(map[string]*tfe.ConfigurationVersion),
|
2018-08-30 22:18:43 +02:00
|
|
|
uploadPaths: make(map[string]string),
|
2018-07-04 17:24:49 +02:00
|
|
|
uploadURLs: make(map[string]*tfe.ConfigurationVersion),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-08 10:40:28 +02:00
|
|
|
func (m *mockConfigurationVersions) List(ctx context.Context, workspaceID string, options tfe.ConfigurationVersionListOptions) (*tfe.ConfigurationVersionList, error) {
|
|
|
|
cvl := &tfe.ConfigurationVersionList{}
|
2018-07-04 17:24:49 +02:00
|
|
|
for _, cv := range m.configVersions {
|
2018-09-08 10:40:28 +02:00
|
|
|
cvl.Items = append(cvl.Items, cv)
|
2018-07-04 17:24:49 +02:00
|
|
|
}
|
2018-09-08 10:40:28 +02:00
|
|
|
|
|
|
|
cvl.Pagination = &tfe.Pagination{
|
|
|
|
CurrentPage: 1,
|
|
|
|
NextPage: 1,
|
|
|
|
PreviousPage: 1,
|
|
|
|
TotalPages: 1,
|
|
|
|
TotalCount: len(cvl.Items),
|
|
|
|
}
|
|
|
|
|
|
|
|
return cvl, nil
|
2018-07-04 17:24:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockConfigurationVersions) Create(ctx context.Context, workspaceID string, options tfe.ConfigurationVersionCreateOptions) (*tfe.ConfigurationVersion, error) {
|
|
|
|
id := generateID("cv-")
|
|
|
|
url := fmt.Sprintf("https://app.terraform.io/_archivist/%s", id)
|
|
|
|
|
|
|
|
cv := &tfe.ConfigurationVersion{
|
|
|
|
ID: id,
|
|
|
|
Status: tfe.ConfigurationPending,
|
|
|
|
UploadURL: url,
|
|
|
|
}
|
|
|
|
|
|
|
|
m.configVersions[cv.ID] = cv
|
|
|
|
m.uploadURLs[url] = cv
|
|
|
|
|
|
|
|
return cv, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockConfigurationVersions) Read(ctx context.Context, cvID string) (*tfe.ConfigurationVersion, error) {
|
|
|
|
cv, ok := m.configVersions[cvID]
|
|
|
|
if !ok {
|
|
|
|
return nil, tfe.ErrResourceNotFound
|
|
|
|
}
|
|
|
|
return cv, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockConfigurationVersions) Upload(ctx context.Context, url, path string) error {
|
|
|
|
cv, ok := m.uploadURLs[url]
|
|
|
|
if !ok {
|
|
|
|
return errors.New("404 not found")
|
|
|
|
}
|
2018-08-30 22:18:43 +02:00
|
|
|
m.uploadPaths[cv.ID] = path
|
2018-07-04 17:24:49 +02:00
|
|
|
cv.Status = tfe.ConfigurationUploaded
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type mockOrganizations struct {
|
2018-08-30 22:18:43 +02:00
|
|
|
client *mockClient
|
2018-07-04 17:24:49 +02:00
|
|
|
organizations map[string]*tfe.Organization
|
|
|
|
}
|
|
|
|
|
2018-08-30 22:18:43 +02:00
|
|
|
func newMockOrganizations(client *mockClient) *mockOrganizations {
|
2018-07-04 17:24:49 +02:00
|
|
|
return &mockOrganizations{
|
2018-08-30 22:18:43 +02:00
|
|
|
client: client,
|
2018-07-04 17:24:49 +02:00
|
|
|
organizations: make(map[string]*tfe.Organization),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-08 10:40:28 +02:00
|
|
|
func (m *mockOrganizations) List(ctx context.Context, options tfe.OrganizationListOptions) (*tfe.OrganizationList, error) {
|
|
|
|
orgl := &tfe.OrganizationList{}
|
2018-07-04 17:24:49 +02:00
|
|
|
for _, org := range m.organizations {
|
2018-09-08 10:40:28 +02:00
|
|
|
orgl.Items = append(orgl.Items, org)
|
|
|
|
}
|
|
|
|
|
|
|
|
orgl.Pagination = &tfe.Pagination{
|
|
|
|
CurrentPage: 1,
|
|
|
|
NextPage: 1,
|
|
|
|
PreviousPage: 1,
|
|
|
|
TotalPages: 1,
|
|
|
|
TotalCount: len(orgl.Items),
|
2018-07-04 17:24:49 +02:00
|
|
|
}
|
2018-09-08 10:40:28 +02:00
|
|
|
|
|
|
|
return orgl, nil
|
2018-07-04 17:24:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockOrganizations) Create(ctx context.Context, options tfe.OrganizationCreateOptions) (*tfe.Organization, error) {
|
|
|
|
org := &tfe.Organization{Name: *options.Name}
|
|
|
|
m.organizations[org.Name] = org
|
|
|
|
return org, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockOrganizations) Read(ctx context.Context, name string) (*tfe.Organization, error) {
|
|
|
|
org, ok := m.organizations[name]
|
|
|
|
if !ok {
|
|
|
|
return nil, tfe.ErrResourceNotFound
|
|
|
|
}
|
|
|
|
return org, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockOrganizations) Update(ctx context.Context, name string, options tfe.OrganizationUpdateOptions) (*tfe.Organization, error) {
|
|
|
|
org, ok := m.organizations[name]
|
|
|
|
if !ok {
|
|
|
|
return nil, tfe.ErrResourceNotFound
|
|
|
|
}
|
|
|
|
org.Name = *options.Name
|
|
|
|
return org, nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockOrganizations) Delete(ctx context.Context, name string) error {
|
|
|
|
delete(m.organizations, name)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type mockPlans struct {
|
2018-08-30 22:18:43 +02:00
|
|
|
client *mockClient
|
|
|
|
logs map[string]string
|
|
|
|
plans map[string]*tfe.Plan
|
2018-07-04 17:24:49 +02:00
|
|
|
}
|
|
|
|
|
2018-08-30 22:18:43 +02:00
|
|
|
func newMockPlans(client *mockClient) *mockPlans {
|
2018-07-04 17:24:49 +02:00
|
|
|
return &mockPlans{
|
2018-08-30 22:18:43 +02:00
|
|
|
client: client,
|
|
|
|
logs: make(map[string]string),
|
|
|
|
plans: make(map[string]*tfe.Plan),
|
2018-07-04 17:24:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-30 22:18:43 +02:00
|
|
|
// create is a helper function to create a mock plan that uses the configured
|
|
|
|
// working directory to find the logfile. This enables us to test if we are
|
|
|
|
// using the
|
|
|
|
func (m *mockPlans) create(cvID, workspaceID string) (*tfe.Plan, error) {
|
|
|
|
id := generateID("plan-")
|
|
|
|
url := fmt.Sprintf("https://app.terraform.io/_archivist/%s", id)
|
2018-07-04 17:24:49 +02:00
|
|
|
|
2018-08-30 22:18:43 +02:00
|
|
|
p := &tfe.Plan{
|
|
|
|
ID: id,
|
|
|
|
LogReadURL: url,
|
|
|
|
Status: tfe.PlanPending,
|
|
|
|
}
|
2018-07-04 17:24:49 +02:00
|
|
|
|
2018-08-30 22:18:43 +02:00
|
|
|
w, ok := m.client.Workspaces.workspaceIDs[workspaceID]
|
|
|
|
if !ok {
|
|
|
|
return nil, tfe.ErrResourceNotFound
|
2018-07-04 17:24:49 +02:00
|
|
|
}
|
|
|
|
|
2018-08-30 22:18:43 +02:00
|
|
|
m.logs[url] = filepath.Join(
|
|
|
|
m.client.ConfigurationVersions.uploadPaths[cvID],
|
|
|
|
w.WorkingDirectory,
|
|
|
|
"output.log",
|
|
|
|
)
|
|
|
|
m.plans[p.ID] = p
|
|
|
|
|
|
|
|
return p, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockPlans) Read(ctx context.Context, planID string) (*tfe.Plan, error) {
|
|
|
|
p, ok := m.plans[planID]
|
|
|
|
if !ok {
|
|
|
|
return nil, tfe.ErrResourceNotFound
|
|
|
|
}
|
|
|
|
p.Status = tfe.PlanFinished
|
2018-07-04 17:24:49 +02:00
|
|
|
return p, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockPlans) Logs(ctx context.Context, planID string) (io.Reader, error) {
|
|
|
|
p, err := m.Read(ctx, planID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
logfile, ok := m.logs[p.LogReadURL]
|
|
|
|
if !ok {
|
|
|
|
return nil, tfe.ErrResourceNotFound
|
|
|
|
}
|
|
|
|
|
2018-08-30 22:18:43 +02:00
|
|
|
if _, err := os.Stat(logfile); os.IsNotExist(err) {
|
|
|
|
return bytes.NewBufferString("logfile does not exist"), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
logs, err := ioutil.ReadFile(logfile)
|
2018-07-04 17:24:49 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return bytes.NewBuffer(logs), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type mockRuns struct {
|
2018-08-30 22:18:43 +02:00
|
|
|
client *mockClient
|
2018-07-04 17:24:49 +02:00
|
|
|
runs map[string]*tfe.Run
|
|
|
|
workspaces map[string][]*tfe.Run
|
|
|
|
}
|
|
|
|
|
2018-08-30 22:18:43 +02:00
|
|
|
func newMockRuns(client *mockClient) *mockRuns {
|
2018-07-04 17:24:49 +02:00
|
|
|
return &mockRuns{
|
2018-08-30 22:18:43 +02:00
|
|
|
client: client,
|
2018-07-04 17:24:49 +02:00
|
|
|
runs: make(map[string]*tfe.Run),
|
|
|
|
workspaces: make(map[string][]*tfe.Run),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-08 10:40:28 +02:00
|
|
|
func (m *mockRuns) List(ctx context.Context, workspaceID string, options tfe.RunListOptions) (*tfe.RunList, error) {
|
2018-08-30 22:18:43 +02:00
|
|
|
w, ok := m.client.Workspaces.workspaceIDs[workspaceID]
|
|
|
|
if !ok {
|
|
|
|
return nil, tfe.ErrResourceNotFound
|
|
|
|
}
|
2018-09-08 10:40:28 +02:00
|
|
|
|
|
|
|
rl := &tfe.RunList{}
|
2018-08-30 22:18:43 +02:00
|
|
|
for _, r := range m.workspaces[w.ID] {
|
2018-09-08 10:40:28 +02:00
|
|
|
rl.Items = append(rl.Items, r)
|
|
|
|
}
|
|
|
|
|
|
|
|
rl.Pagination = &tfe.Pagination{
|
|
|
|
CurrentPage: 1,
|
|
|
|
NextPage: 1,
|
|
|
|
PreviousPage: 1,
|
|
|
|
TotalPages: 1,
|
|
|
|
TotalCount: len(rl.Items),
|
2018-07-04 17:24:49 +02:00
|
|
|
}
|
2018-09-08 10:40:28 +02:00
|
|
|
|
|
|
|
return rl, nil
|
2018-07-04 17:24:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockRuns) Create(ctx context.Context, options tfe.RunCreateOptions) (*tfe.Run, error) {
|
2018-08-30 22:18:43 +02:00
|
|
|
p, err := m.client.Plans.create(options.ConfigurationVersion.ID, options.Workspace.ID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2018-07-04 17:24:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
r := &tfe.Run{
|
2018-08-30 22:18:43 +02:00
|
|
|
ID: generateID("run-"),
|
2018-07-04 17:24:49 +02:00
|
|
|
Plan: p,
|
|
|
|
Status: tfe.RunPending,
|
|
|
|
}
|
|
|
|
|
|
|
|
m.runs[r.ID] = r
|
|
|
|
m.workspaces[options.Workspace.ID] = append(m.workspaces[options.Workspace.ID], r)
|
|
|
|
|
|
|
|
return r, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockRuns) Read(ctx context.Context, runID string) (*tfe.Run, error) {
|
|
|
|
r, ok := m.runs[runID]
|
|
|
|
if !ok {
|
|
|
|
return nil, tfe.ErrResourceNotFound
|
|
|
|
}
|
|
|
|
return r, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockRuns) Apply(ctx context.Context, runID string, options tfe.RunApplyOptions) error {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockRuns) Cancel(ctx context.Context, runID string, options tfe.RunCancelOptions) error {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockRuns) Discard(ctx context.Context, runID string, options tfe.RunDiscardOptions) error {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
type mockStateVersions struct {
|
2018-08-30 22:18:43 +02:00
|
|
|
client *mockClient
|
2018-07-04 17:24:49 +02:00
|
|
|
states map[string][]byte
|
|
|
|
stateVersions map[string]*tfe.StateVersion
|
|
|
|
workspaces map[string][]string
|
|
|
|
}
|
|
|
|
|
2018-08-30 22:18:43 +02:00
|
|
|
func newMockStateVersions(client *mockClient) *mockStateVersions {
|
2018-07-04 17:24:49 +02:00
|
|
|
return &mockStateVersions{
|
2018-08-30 22:18:43 +02:00
|
|
|
client: client,
|
2018-07-04 17:24:49 +02:00
|
|
|
states: make(map[string][]byte),
|
|
|
|
stateVersions: make(map[string]*tfe.StateVersion),
|
|
|
|
workspaces: make(map[string][]string),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-08 10:40:28 +02:00
|
|
|
func (m *mockStateVersions) List(ctx context.Context, options tfe.StateVersionListOptions) (*tfe.StateVersionList, error) {
|
|
|
|
svl := &tfe.StateVersionList{}
|
2018-07-04 17:24:49 +02:00
|
|
|
for _, sv := range m.stateVersions {
|
2018-09-08 10:40:28 +02:00
|
|
|
svl.Items = append(svl.Items, sv)
|
|
|
|
}
|
|
|
|
|
|
|
|
svl.Pagination = &tfe.Pagination{
|
|
|
|
CurrentPage: 1,
|
|
|
|
NextPage: 1,
|
|
|
|
PreviousPage: 1,
|
|
|
|
TotalPages: 1,
|
|
|
|
TotalCount: len(svl.Items),
|
2018-07-04 17:24:49 +02:00
|
|
|
}
|
2018-09-08 10:40:28 +02:00
|
|
|
|
|
|
|
return svl, nil
|
2018-07-04 17:24:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockStateVersions) Create(ctx context.Context, workspaceID string, options tfe.StateVersionCreateOptions) (*tfe.StateVersion, error) {
|
|
|
|
id := generateID("sv-")
|
|
|
|
url := fmt.Sprintf("https://app.terraform.io/_archivist/%s", id)
|
|
|
|
|
|
|
|
sv := &tfe.StateVersion{
|
|
|
|
ID: id,
|
|
|
|
DownloadURL: url,
|
|
|
|
Serial: *options.Serial,
|
|
|
|
}
|
|
|
|
|
|
|
|
state, err := base64.StdEncoding.DecodeString(*options.State)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
m.states[sv.DownloadURL] = state
|
|
|
|
m.stateVersions[sv.ID] = sv
|
|
|
|
m.workspaces[workspaceID] = append(m.workspaces[workspaceID], sv.ID)
|
|
|
|
|
|
|
|
return sv, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockStateVersions) Read(ctx context.Context, svID string) (*tfe.StateVersion, error) {
|
|
|
|
sv, ok := m.stateVersions[svID]
|
|
|
|
if !ok {
|
|
|
|
return nil, tfe.ErrResourceNotFound
|
|
|
|
}
|
|
|
|
return sv, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockStateVersions) Current(ctx context.Context, workspaceID string) (*tfe.StateVersion, error) {
|
2018-08-30 22:18:43 +02:00
|
|
|
w, ok := m.client.Workspaces.workspaceIDs[workspaceID]
|
|
|
|
if !ok {
|
|
|
|
return nil, tfe.ErrResourceNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
svs, ok := m.workspaces[w.ID]
|
2018-07-04 17:24:49 +02:00
|
|
|
if !ok || len(svs) == 0 {
|
|
|
|
return nil, tfe.ErrResourceNotFound
|
|
|
|
}
|
2018-08-30 22:18:43 +02:00
|
|
|
|
2018-07-04 17:24:49 +02:00
|
|
|
sv, ok := m.stateVersions[svs[len(svs)-1]]
|
|
|
|
if !ok {
|
|
|
|
return nil, tfe.ErrResourceNotFound
|
|
|
|
}
|
2018-08-30 22:18:43 +02:00
|
|
|
|
2018-07-04 17:24:49 +02:00
|
|
|
return sv, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockStateVersions) Download(ctx context.Context, url string) ([]byte, error) {
|
|
|
|
state, ok := m.states[url]
|
|
|
|
if !ok {
|
|
|
|
return nil, tfe.ErrResourceNotFound
|
|
|
|
}
|
|
|
|
return state, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type mockWorkspaces struct {
|
2018-08-30 22:18:43 +02:00
|
|
|
client *mockClient
|
2018-07-04 17:24:49 +02:00
|
|
|
workspaceIDs map[string]*tfe.Workspace
|
|
|
|
workspaceNames map[string]*tfe.Workspace
|
|
|
|
}
|
|
|
|
|
2018-08-30 22:18:43 +02:00
|
|
|
func newMockWorkspaces(client *mockClient) *mockWorkspaces {
|
2018-07-04 17:24:49 +02:00
|
|
|
return &mockWorkspaces{
|
2018-08-30 22:18:43 +02:00
|
|
|
client: client,
|
2018-07-04 17:24:49 +02:00
|
|
|
workspaceIDs: make(map[string]*tfe.Workspace),
|
|
|
|
workspaceNames: make(map[string]*tfe.Workspace),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-08 10:40:28 +02:00
|
|
|
func (m *mockWorkspaces) List(ctx context.Context, organization string, options tfe.WorkspaceListOptions) (*tfe.WorkspaceList, error) {
|
|
|
|
wl := &tfe.WorkspaceList{}
|
2018-07-04 17:24:49 +02:00
|
|
|
for _, w := range m.workspaceIDs {
|
2018-09-08 10:40:28 +02:00
|
|
|
wl.Items = append(wl.Items, w)
|
|
|
|
}
|
|
|
|
|
|
|
|
wl.Pagination = &tfe.Pagination{
|
|
|
|
CurrentPage: 1,
|
|
|
|
NextPage: 1,
|
|
|
|
PreviousPage: 1,
|
|
|
|
TotalPages: 1,
|
|
|
|
TotalCount: len(wl.Items),
|
2018-07-04 17:24:49 +02:00
|
|
|
}
|
2018-09-08 10:40:28 +02:00
|
|
|
|
|
|
|
return wl, nil
|
2018-07-04 17:24:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockWorkspaces) Create(ctx context.Context, organization string, options tfe.WorkspaceCreateOptions) (*tfe.Workspace, error) {
|
|
|
|
w := &tfe.Workspace{
|
2018-08-30 22:18:43 +02:00
|
|
|
ID: generateID("ws-"),
|
2018-07-04 17:24:49 +02:00
|
|
|
Name: *options.Name,
|
|
|
|
}
|
|
|
|
m.workspaceIDs[w.ID] = w
|
|
|
|
m.workspaceNames[w.Name] = w
|
|
|
|
return w, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockWorkspaces) Read(ctx context.Context, organization, workspace string) (*tfe.Workspace, error) {
|
|
|
|
w, ok := m.workspaceNames[workspace]
|
|
|
|
if !ok {
|
|
|
|
return nil, tfe.ErrResourceNotFound
|
|
|
|
}
|
|
|
|
return w, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockWorkspaces) Update(ctx context.Context, organization, workspace string, options tfe.WorkspaceUpdateOptions) (*tfe.Workspace, error) {
|
|
|
|
w, ok := m.workspaceNames[workspace]
|
|
|
|
if !ok {
|
|
|
|
return nil, tfe.ErrResourceNotFound
|
|
|
|
}
|
2018-08-30 22:18:43 +02:00
|
|
|
|
|
|
|
if options.Name != nil {
|
|
|
|
w.Name = *options.Name
|
|
|
|
}
|
|
|
|
if options.TerraformVersion != nil {
|
|
|
|
w.TerraformVersion = *options.TerraformVersion
|
|
|
|
}
|
|
|
|
if options.WorkingDirectory != nil {
|
|
|
|
w.WorkingDirectory = *options.WorkingDirectory
|
|
|
|
}
|
2018-07-04 17:24:49 +02:00
|
|
|
|
|
|
|
delete(m.workspaceNames, workspace)
|
|
|
|
m.workspaceNames[w.Name] = w
|
|
|
|
|
|
|
|
return w, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockWorkspaces) Delete(ctx context.Context, organization, workspace string) error {
|
|
|
|
if w, ok := m.workspaceNames[workspace]; ok {
|
|
|
|
delete(m.workspaceIDs, w.ID)
|
|
|
|
}
|
|
|
|
delete(m.workspaceNames, workspace)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockWorkspaces) Lock(ctx context.Context, workspaceID string, options tfe.WorkspaceLockOptions) (*tfe.Workspace, error) {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockWorkspaces) Unlock(ctx context.Context, workspaceID string) (*tfe.Workspace, error) {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockWorkspaces) AssignSSHKey(ctx context.Context, workspaceID string, options tfe.WorkspaceAssignSSHKeyOptions) (*tfe.Workspace, error) {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockWorkspaces) UnassignSSHKey(ctx context.Context, workspaceID string) (*tfe.Workspace, error) {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
const alphanumeric = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
|
|
|
|
|
|
|
|
func generateID(s string) string {
|
|
|
|
b := make([]byte, 16)
|
|
|
|
for i := range b {
|
|
|
|
b[i] = alphanumeric[rand.Intn(len(alphanumeric))]
|
|
|
|
}
|
|
|
|
return s + string(b)
|
|
|
|
}
|