summaryrefslogtreecommitdiffstats
path: root/config-model/src/test/java/com/yahoo
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2024-02-06 12:27:23 +0100
committerHenning Baldersheim <balder@yahoo-inc.com>2024-02-06 12:27:23 +0100
commitc4b29ec309bc118d41f90a9d8bbd94f53023e208 (patch)
treec0d3cfa696c06270daea04ab55b3908a0273f457 /config-model/src/test/java/com/yahoo
parentfcca2419ded121767da85b563efb7a634533bae1 (diff)
Round redundancy up
Diffstat (limited to 'config-model/src/test/java/com/yahoo')
-rw-r--r--config-model/src/test/java/com/yahoo/vespa/model/content/RedundancyTest.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/config-model/src/test/java/com/yahoo/vespa/model/content/RedundancyTest.java b/config-model/src/test/java/com/yahoo/vespa/model/content/RedundancyTest.java
index 77797d91d3a..070ab10c805 100644
--- a/config-model/src/test/java/com/yahoo/vespa/model/content/RedundancyTest.java
+++ b/config-model/src/test/java/com/yahoo/vespa/model/content/RedundancyTest.java
@@ -3,6 +3,7 @@ package com.yahoo.vespa.model.content;
import org.junit.jupiter.api.Test;
+import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertTrue;
@@ -26,4 +27,19 @@ public class RedundancyTest {
return r;
}
+ private static void verifyFinalRedundancy(Redundancy redundancy, int expectedFinal, int expectedEffectiveFinal) {
+ assertEquals(expectedEffectiveFinal, redundancy.effectiveFinalRedundancy());
+ assertEquals(expectedFinal, redundancy.finalRedundancy());
+ assertEquals(expectedEffectiveFinal, redundancy.effectiveReadyCopies());
+ assertEquals(expectedFinal, redundancy.readyCopies());
+ }
+
+ @Test
+ void test_that_redundancy_is_rounded_up() {
+ verifyFinalRedundancy(new Redundancy(1, 1, 1, 5, 5), 1,5);
+ verifyFinalRedundancy(new Redundancy(1, 1, 1, 5, 4), 1,4);
+ verifyFinalRedundancy(new Redundancy(1, 2, 2, 5, 10), 2,10);
+ verifyFinalRedundancy(new Redundancy(1, 2, 2, 5, 9), 2,9);
+ }
+
}