X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=tests%2Forg%2Fcacert%2Fgigi%2FTestDomain.java;h=00919975224b3cb9bd3740c624ab107008767559;hb=1c7e27416fbfffcacf7b6f9a8765e9dd9671c2b7;hp=de494f2b2702dd6d5268c7323b86117466088059;hpb=72dc0df91fc693411877c1306c5b024c5948b356;p=gigi.git diff --git a/tests/org/cacert/gigi/TestDomain.java b/tests/org/cacert/gigi/TestDomain.java index de494f2b..00919975 100644 --- a/tests/org/cacert/gigi/TestDomain.java +++ b/tests/org/cacert/gigi/TestDomain.java @@ -19,29 +19,25 @@ public class TestDomain extends ManagedTest { @Test public void testDomain() throws InterruptedException, GigiApiException { assertEquals(0, us.getDomains().length); - Domain d = new Domain(us, "v1.example.org"); - assertEquals(0, d.getId()); - d.insert(); + Domain d = new Domain(us, us, "v1example.org"); Domain[] domains = us.getDomains(); assertEquals(1, domains.length); - assertEquals("v1.example.org", domains[0].getSuffix()); + assertEquals("v1example.org", domains[0].getSuffix()); assertEquals(domains[0].getOwner().getId(), us.getId()); assertNotEquals(0, domains[0].getId()); assertNotEquals(0, d.getId()); assertEquals(d.getId(), domains[0].getId()); - Domain d2 = new Domain(us, "v2.example.org"); - assertEquals(0, d2.getId()); - d2.insert(); + new Domain(us, us, "v2-example.org"); domains = us.getDomains(); assertEquals(2, domains.length); - if ( !domains[1].getSuffix().equals("v2.example.org")) { + if ( !domains[1].getSuffix().equals("v2-example.org")) { Domain d1 = domains[0]; domains[0] = domains[1]; domains[1] = d1; } - assertEquals("v2.example.org", domains[1].getSuffix()); + assertEquals("v2-example.org", domains[1].getSuffix()); assertEquals(domains[0].getOwner().getId(), us.getId()); assertEquals(domains[1].getOwner().getId(), us.getId()); assertNotEquals(0, domains[0].getId()); @@ -52,11 +48,9 @@ public class TestDomain extends ManagedTest { @Test public void testDoubleDomain() throws InterruptedException, GigiApiException { - Domain d = new Domain(us, "dub.example.org"); - d.insert(); + new Domain(us, us, "dub-example.org"); try { - Domain d2 = new Domain(us, "dub.example.org"); - d2.insert(); + new Domain(us, us, "dub-example.org"); fail("expected exception"); } catch (GigiApiException e) { // expected @@ -65,43 +59,9 @@ public class TestDomain extends ManagedTest { @Test public void testDoubleDomainDelete() throws InterruptedException, GigiApiException { - Domain d = new Domain(us, "del.example.org"); - d.insert(); + Domain d = new Domain(us, us, "delexample.org"); d.delete(); - Domain d2 = new Domain(us, "del.example.org"); - d2.insert(); - } - - @Test - public void testDoubleDomainPrefix() throws InterruptedException, GigiApiException { - Domain d = new Domain(us, "pref.aexample.org"); - d.insert(); - Domain d2 = new Domain(us, "a.pref.aexample.org"); - try { - d2.insert(); - fail("expected exception"); - } catch (GigiApiException e) { - // expected - } - Domain d3 = new Domain(us, "aexample.org"); - try { - d3.insert(); - fail("expected exception"); - } catch (GigiApiException e) { - // expected - } - } - - @Test - public void testDoubleInsertDomain() throws InterruptedException, GigiApiException { - Domain d = new Domain(us, "dins.example.org"); - d.insert(); - try { - d.insert(); - fail("expected exception"); - } catch (GigiApiException e) { - // expected - } + new Domain(us, us, "delexample.org"); } }