-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #129 from dell/OS-Repo-Apis
OS Repository APIs
- Loading branch information
Showing
3 changed files
with
212 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
// Copyright © 2024 Dell Inc. or its subsidiaries. All Rights Reserved. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package inttests | ||
|
||
import ( | ||
"testing" | ||
"time" | ||
|
||
types "github.com/dell/goscaleio/types/v1" | ||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
// TestOSRepositoryGetAll tests get All OS Repositories | ||
func TestOSRepositoryGetAll(t *testing.T) { | ||
system := getSystem() | ||
osRepositories, err := system.GetAllOSRepositories() | ||
assert.Nil(t, err) | ||
assert.NotNil(t, osRepositories) | ||
} | ||
|
||
// TestOSRepositoryGetByID tests Get OS Repository by Id | ||
func TestOSRepositoryGetByID(t *testing.T) { | ||
system := getSystem() | ||
osRepository, err := system.GetOSRepositoryByID("8aaa80458fca6913018fce6449f50e81") | ||
assert.Nil(t, err) | ||
assert.NotNil(t, osRepository) | ||
} | ||
|
||
// TestOSRepositoryGetByIDFail tests the negative case for Get OS Repository by Id | ||
func TestOSRepositoryGetByIDFail(t *testing.T) { | ||
system := getSystem() | ||
_, err := system.GetOSRepositoryByID("Invalid") | ||
assert.NotNil(t, err) | ||
} | ||
|
||
// TestGetOSRepositoryByIDFail tests the negative case for Get OS Repository by Id | ||
func TestOSRepositoryCreateFail(t *testing.T) { | ||
system := getSystem() | ||
_, err := system.CreateOSRepository(nil) | ||
assert.NotNil(t, err) | ||
} | ||
|
||
// TestOSRepositoryDeleteFail tests the negative case for Delete OS Repository | ||
func TestOSRepositoryDeleteFail(t *testing.T) { | ||
system := getSystem() | ||
// Delete | ||
err := system.RemoveOSRepository("invalid") | ||
assert.NotNil(t, err) | ||
} | ||
|
||
// TestOSRepositoryCreateAndDelete tests create and delete operations for OS Repository | ||
func TestOSRepositoryCreateAndDelete(t *testing.T) { | ||
system := getSystem() | ||
createOSRepository := &types.OSRepository{ | ||
Name: "Test-OS-Repository", | ||
RepoType: "ISO", | ||
SourcePath: "https://100.65.27.72/artifactory/vxfm-yum-release/pfmp20/RCM/Denver/RCMs/esxi/ESXi-8.0.0-20513097-3.8.0.0_Dell.iso", | ||
ImageType: "vmware_esxi", | ||
} | ||
// Create | ||
osRepository, err := system.CreateOSRepository(createOSRepository) | ||
assert.Nil(t, err) | ||
assert.NotNil(t, osRepository) | ||
// We will wait for Repository to be unpacked and created | ||
time.Sleep(240 * time.Second) | ||
|
||
var repoID string | ||
osRepositories, err := system.GetAllOSRepositories() | ||
assert.Nil(t, err) | ||
assert.NotNil(t, osRepositories) | ||
for _, repo := range osRepositories { | ||
if repo.Name == "Test-OS-Repository" { | ||
repoID = repo.ID | ||
break | ||
} | ||
} | ||
|
||
// Delete | ||
err = system.RemoveOSRepository(repoID) | ||
assert.Nil(t, err) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
// Copyright © 2024 Dell Inc. or its subsidiaries. All Rights Reserved. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package goscaleio | ||
|
||
import ( | ||
"fmt" | ||
"net/http" | ||
"time" | ||
|
||
types "github.com/dell/goscaleio/types/v1" | ||
) | ||
|
||
const osRepoPath = "/api/v1/OSRepository" | ||
|
||
// GetAllOSRepositories Gets all OS Repositories | ||
func (s *System) GetAllOSRepositories() ([]types.OSRepository, error) { | ||
defer TimeSpent("GetAllOSRepositories", time.Now()) | ||
|
||
var osRepositories []types.OSRepository | ||
err := s.client.getJSONWithRetry( | ||
http.MethodGet, osRepoPath, nil, &osRepositories) | ||
if err != nil { | ||
return nil, err | ||
} | ||
return osRepositories, nil | ||
} | ||
|
||
// GetOSRepositoryByID Gets OS Repository by ID | ||
func (s *System) GetOSRepositoryByID(id string) (*types.OSRepository, error) { | ||
defer TimeSpent("GetOSRepositoryByID", time.Now()) | ||
|
||
pathWithID := fmt.Sprintf("%v/%v", osRepoPath, id) | ||
var osRepository types.OSRepository | ||
err := s.client.getJSONWithRetry( | ||
http.MethodGet, pathWithID, nil, &osRepository) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
return &osRepository, nil | ||
} | ||
|
||
// CreateOSRepository Creates OS Repository | ||
func (s *System) CreateOSRepository(createOSRepository *types.OSRepository) (*types.OSRepository, error) { | ||
defer TimeSpent("CreateOSRepository", time.Now()) | ||
var createResponse types.OSRepository | ||
if createOSRepository == nil { | ||
return &createResponse, fmt.Errorf("createOSRepository cannot be nil") | ||
} | ||
bodyData := map[string]interface{}{ | ||
"name": createOSRepository.Name, | ||
"repoType": createOSRepository.RepoType, | ||
"sourcePath": createOSRepository.SourcePath, | ||
"imageType": createOSRepository.ImageType, | ||
} | ||
err := s.client.getJSONWithRetry( | ||
http.MethodPost, osRepoPath, bodyData, &createResponse) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
return &createResponse, nil | ||
} | ||
|
||
// RemoveOSRepository Removes OS Repository | ||
func (s *System) RemoveOSRepository(id string) error { | ||
defer TimeSpent("RemoveOSRepository", time.Now()) | ||
pathWithID := fmt.Sprintf("%v/%v", osRepoPath, id) | ||
err := s.client.getJSONWithRetry( | ||
http.MethodDelete, pathWithID, nil, nil) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters