Skip to content
This repository was archived by the owner on Oct 2, 2025. It is now read-only.

Commit 73cc779

Browse files
committed
feat(gce): rewrite test in Java for GoogleDiskTest
1 parent 85173f1 commit 73cc779

File tree

2 files changed

+57
-63
lines changed

2 files changed

+57
-63
lines changed

clouddriver-google/src/test/groovy/com/netflix/spinnaker/clouddriver/google/model/GoogleDiskSpec.groovy

Lines changed: 0 additions & 63 deletions
This file was deleted.
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
/*
2+
* Copyright 2024 Harness, Inc.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
package com.netflix.spinnaker.clouddriver.google.model;
18+
19+
import org.junit.jupiter.api.Test;
20+
import static org.junit.jupiter.api.Assertions.assertEquals;
21+
import static org.junit.jupiter.api.Assertions.assertTrue;
22+
23+
public class GoogleDiskTest {
24+
25+
@Test
26+
public void testSettingDiskTypePdSsd() {
27+
GoogleDisk disk = new GoogleDisk();
28+
disk.setType("pd-ssd");
29+
30+
assertEquals(GoogleDiskType.PD_SSD, disk.getType());
31+
}
32+
33+
@Test
34+
public void testSettingDiskTypeHyperdiskBalanced() {
35+
GoogleDisk disk = new GoogleDisk();
36+
disk.setType("hyperdisk-balanced");
37+
38+
assertEquals(GoogleDiskType.HYPERDISK_BALANCED, disk.getType());
39+
}
40+
41+
@Test
42+
public void testDefaultDiskTypeOnUnknown() {
43+
GoogleDisk disk = new GoogleDisk();
44+
disk.setType("UNKNOWN");
45+
46+
assertEquals(GoogleDiskType.PD_STANDARD, disk.getType());
47+
}
48+
49+
@Test
50+
public void testPersistentDiskDetection() {
51+
GoogleDisk disk = new GoogleDisk();
52+
disk.setType("pd-ssd");
53+
54+
assertTrue(disk.isPersistent());
55+
}
56+
}
57+

0 commit comments

Comments
 (0)