--- experimental/server/ACL/ACLTest.java 2001/12/20 00:59:54 1.2 +++ experimental/server/ACL/ACLTest.java 2001/12/31 01:49:13 1.5 @@ -9,14 +9,54 @@ class ACLTest { // add some test rules acl.add(ACL.ALLOW, "*.ukc.ac.uk"); - acl.add(ACL.ALLOW, "129.12.*"); + acl.add(ACL.ALLOW, "129.12.*.*"); acl.add(ACL.ALLOW, "*.bishnet.net"); acl.add(ACL.ALLOW, "192.168.*"); + acl.add(ACL.ALLOW, "192.168.*.*"); + acl.add(ACL.ALLOW, "one.two.three.four.five.six.*"); + acl.add(ACL.ALLOW, "192.129.12.*.*"); + acl.add(ACL.ALLOW, "129.12.*"); + acl.add(ACL.ALLOW, "129.12.4"); + acl.add(ACL.ALLOW, "129.*"); + acl.add(ACL.ALLOW, "129*"); + acl.add(ACL.ALLOW, "*"); + acl.add(ACL.ALLOW, ""); // not really needed if we default to deny :) //acl.add(ACL.DENY, "*"); - // dump our ACL to the console - System.out.println(acl.getStringACL()); + // dump our ACL to the console before serialization + System.out.println("BEFORE: " + acl); + + // name for our serialized ACL + String aclFilename = "aclfile"; + + // write out our ACL to a file + try { + ObjectOutputStream ostream = new ObjectOutputStream(new BufferedOutputStream(new FileOutputStream(aclFilename))); + ostream.writeObject(acl); + ostream.flush(); + ostream.close(); + } + catch (Exception e) { + System.out.println("exception: " + e); + e.printStackTrace(); + System.exit(1); + } + + // and read it back in :) + try { + ObjectInputStream istream = new ObjectInputStream(new BufferedInputStream(new FileInputStream(aclFilename))); + acl = (ACL) istream.readObject(); + istream.close(); + } + catch (Exception e) { + System.out.println("exception: " + e); + e.printStackTrace(); + System.exit(1); + } + + // dump our ACL to the console after serialization + System.out.println("AFTER: " + acl); // run a few tests System.out.println("killigrew.ukc.ac.uk: " + acl.check("killigrew.ukc.ac.uk"));