1 /*
   2  * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 import javax.naming.directory.DirContext;
  25 import java.util.Hashtable;
  26 
  27 public abstract class DNSTestBase extends TestBase {
  28     private Hashtable<Object, Object> env;
  29     private DirContext ctx;
  30     private boolean localServer;
  31 
  32     {
  33         // set default
  34         setLocalServer(true);
  35     }
  36 
  37     @Override public void initTest(String[] args) {
  38         env = DNSTestUtils
  39                 .initEnv(localServer, this.getClass().getName(), args);
  40     }
  41 
  42     @Override public void cleanupTest() {
  43         DNSTestUtils.cleanup(ctx);
  44         Server server = (Server) env.get(DNSTestUtils.TEST_DNS_SERVER_THREAD);
  45         if (server != null) {
  46             server.stopServer();
  47         }
  48     }
  49 
  50     public Hashtable<Object, Object> env() {
  51         if (env == null) {
  52             throw new RuntimeException("Test had not been initialized");
  53         }
  54 
  55         return env;
  56     }
  57 
  58     public DirContext context() {
  59         if (ctx == null) {
  60             throw new RuntimeException("Context had not been initialized");
  61         }
  62 
  63         return ctx;
  64     }
  65 
  66     public void setContext(DirContext context) {
  67         ctx = context;
  68     }
  69 
  70     public void setLocalServer(boolean isRequired) {
  71         this.localServer = isRequired;
  72     }
  73 }