samples/apifest1/day1/stackbasedsolution/test/org/netbeans/apifest/boolcircuit/CircuitTest.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 09:58:08 +0200
changeset 153 b5cbb797ec0a
parent 132 3bc4c54f4bcc
child 154 0fd5e9c500b9
permissions -rw-r--r--
up to line 2000
     1 /*
     2  * The contents of this file are subject to the terms of the Common Development
     3  * and Distribution License (the License). You may not use this file except in
     4  * compliance with the License.
     5  *
     6  * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
     7  * or http://www.netbeans.org/cddl.txt.
     8  *
     9  * When distributing Covered Code, include this CDDL Header Notice in each file
    10  * and include the License file at http://www.netbeans.org/cddl.txt.
    11  * If applicable, add the following below the CDDL Header, with the fields
    12  * enclosed by brackets [] replaced by your own identifying information:
    13  * "Portions Copyrighted [year] [name of copyright owner]"
    14  *
    15  * The Original Software is NetBeans. The Initial Developer of the Original
    16  * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
    17  * Microsystems, Inc. All Rights Reserved.
    18  */
    19 
    20 package org.netbeans.apifest.boolcircuit;
    21 
    22 import java.util.Arrays;
    23 import java.util.Stack;
    24 import junit.framework.TestCase;
    25 
    26 /** The initial quest for this APIFest is to create an API for boolean 
    27  * circuits. Such API shall be able to compose a boolean circuit from
    28  * basic elements and evaluate the result given initial values for 
    29  * input variables.
    30  * <p>
    31  * The basic elements include:
    32  * <ul>
    33  *   <li>negation - has one input and one output and changes 0 on input to 
    34  *          on output 1 and 1 to 0
    35  *   <li>and - has two inputs and one output. The output is 1 only if both 
    36  *          inputs are 1, otherwise it is 0
    37  *   <li>or - has two inputs and one output. The output is 1 always, except
    38  *          in the case when both inputs are 0
    39  * </ul>
    40  *
    41  * <p>
    42  * The boolean circuit can be used to represent boolean formulas and compute
    43  * the results for certain values of its inputs. The individual tasks described
    44  * as tests bellow.
    45  *
    46  * <p>
    47  * Links of interest:
    48  * <ul>
    49  *   <li><a href="http://en.wikipedia.org/wiki/Truth_table">Truth table</a>
    50  *   <li><a href="http://en.wikipedia.org/wiki/Tautology_(logic)">Taugology</a>
    51  * </ul>
    52  */
    53 public class CircuitTest extends TestCase {
    54     static {
    55         // your code shall run without any permissions
    56     }
    57     
    58     public CircuitTest(String testName) {
    59         super(testName);
    60     }
    61 
    62     protected void setUp() throws Exception {
    63     }
    64 
    65     protected void tearDown() throws Exception {
    66     }
    67     
    68     // BEGIN: apifest.day1.stackbasedsolution.CircuitTest
    69     /** 
    70      * Create a circuit to evaluate x1 and x2 and then
    71      * verify that its result is false for input (false, true) and
    72      * it is true for input (true, true).
    73      */
    74     public void testX1andX2() {
    75         Stack<Character> s = new Stack<Character> ();
    76         s.addAll(Arrays.asList('1', '1'));
    77         assertEquals("'1' for '11' input.", '1', CircuitFactory.getBasicCircuit(Operation.AND).evaluate(s));
    78         s.addAll(Arrays.asList('1', '0'));
    79         assertEquals("'0' for '10' input.", '0', CircuitFactory.getBasicCircuit(Operation.AND).evaluate(s));
    80     }
    81     
    82     /** 
    83      * Create a circuit to evaluate (x1 and x2) or x3 and then
    84      * verify that its result is false for input (false, true, false) and
    85      * it is true for input (false, false, true).
    86      */
    87     public void testX1andX2orX3() {
    88         Stack<Character> s = new Stack<Character> ();
    89         s.addAll(Arrays.asList('0', '1', '0'));
    90         assertEquals("'0' for '010' input.", '0', CircuitFactory.join(CircuitFactory.getTrivialCircuit(), CircuitFactory.getBasicCircuit(Operation.OR), Operation.AND).evaluate(s));
    91         s.addAll(Arrays.asList('0', '0', '1'));
    92         assertEquals("'1' for '001' input.", '1', CircuitFactory.join(CircuitFactory.getTrivialCircuit(), CircuitFactory.getBasicCircuit(Operation.OR), Operation.AND).evaluate(s));
    93     }
    94     /** 
    95      * Create a circuit to evaluate (x1 or not(x1)) and then
    96      * verify that its result is true for all values of x1.
    97      */
    98     public void testAlwaysTrue() {
    99         Circuit alwaysTrue = CircuitFactory.join(CircuitFactory.getTrivialCircuit(), CircuitFactory.getBasicCircuit(Operation.NEG), Operation.OR);
   100         Stack<Character> s = new Stack<Character> ();
   101         s.addAll(Arrays.asList('0', '0'));
   102         assertEquals ("'1' for '00'", '1', alwaysTrue.evaluate(s));
   103         s.addAll(Arrays.asList('1', '1'));
   104         assertEquals ("'1' for '11'", '1', alwaysTrue.evaluate(s));
   105     }
   106     // END: apifest.day1.stackbasedsolution.CircuitTest
   107 }