-
Notifications
You must be signed in to change notification settings - Fork 2.8k
[ZEPPELIN-6281] Add Unit Tests for LivyVersion Class #5029
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
9d366a2
017ad90
8349072
ed8791d
301ef61
0d8d997
792ea8b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,59 @@ | ||
| package org.apache.zeppelin.livy; | ||
|
|
||
| import org.junit.jupiter.api.Test; | ||
|
|
||
| import static org.junit.jupiter.api.Assertions.*; | ||
|
||
|
|
||
| class LivyVersionTest { | ||
|
|
||
| @Test | ||
| void testVersionParsing() { | ||
| LivyVersion v = new LivyVersion("1.6.2"); | ||
| assertEquals(10602, v.toNumber()); | ||
| assertEquals("1.6.2", v.toString()); | ||
| } | ||
|
|
||
| @Test | ||
| void testPreReleaseVersionParsing() { | ||
| LivyVersion v = new LivyVersion("0.6.0-SNAPSHOT"); | ||
| assertEquals(600, v.toNumber()); | ||
| assertEquals("0.6.0-SNAPSHOT", v.toString()); | ||
| } | ||
|
|
||
| @Test | ||
| void testComparsionLogic() { | ||
| LivyVersion v1 = new LivyVersion("0.5.0"); | ||
| LivyVersion v2 = new LivyVersion("0.4.0"); | ||
| assertTrue(v1.newerThan(v2)); | ||
| assertTrue(v2.olderThan(v1)); | ||
| assertFalse(v2.newerThan(v1)); | ||
| assertFalse(v1.olderThan(v2)); | ||
| } | ||
|
|
||
| @Test | ||
| void testInvalidVersionString() { | ||
| LivyVersion v1 = new LivyVersion("invalid"); | ||
| assertEquals(99999, v1.toNumber()); | ||
|
|
||
| LivyVersion v2 = new LivyVersion(null); | ||
| assertEquals(99999, v2.toNumber()); | ||
| } | ||
|
|
||
| @Test | ||
| void isCancelSupported() { | ||
| assertTrue(new LivyVersion("0.3.0").isCancelSupported()); | ||
| assertFalse(new LivyVersion("0.2.0").isCancelSupported()); | ||
| } | ||
|
|
||
| @Test | ||
| void isSharedSupported() { | ||
| assertTrue(new LivyVersion("0.5.0").isSharedSupported()); | ||
| assertFalse(new LivyVersion("0.4.0").isSharedSupported()); | ||
| } | ||
|
|
||
| @Test | ||
| void isGetProgressSupported() { | ||
| assertTrue(new LivyVersion("0.4.0").isGetProgressSupported()); | ||
| assertFalse((new LivyVersion("0.3.0")).isGetProgressSupported()); | ||
| } | ||
| } | ||
Reamer marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
Uh oh!
There was an error while loading. Please reload this page.