json/src/test/java/org/netbeans/html/json/impl/ToDoTest.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 02 Aug 2014 07:54:15 +0200
branchDeepWatch
changeset 788 f8ac4d547ad3
parent 787 a0e8f185c0d4
child 838 bdc3d696dd4a
permissions -rw-r--r--
Deep checking of @ComputedProperties is now default if one depends on another model class
     1 /**
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  *
     4  * Copyright 2013-2014 Oracle and/or its affiliates. All rights reserved.
     5  *
     6  * Oracle and Java are registered trademarks of Oracle and/or its affiliates.
     7  * Other names may be trademarks of their respective owners.
     8  *
     9  * The contents of this file are subject to the terms of either the GNU
    10  * General Public License Version 2 only ("GPL") or the Common
    11  * Development and Distribution License("CDDL") (collectively, the
    12  * "License"). You may not use this file except in compliance with the
    13  * License. You can obtain a copy of the License at
    14  * http://www.netbeans.org/cddl-gplv2.html
    15  * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
    16  * specific language governing permissions and limitations under the
    17  * License.  When distributing the software, include this License Header
    18  * Notice in each file and include the License file at
    19  * nbbuild/licenses/CDDL-GPL-2-CP.  Oracle designates this
    20  * particular file as subject to the "Classpath" exception as provided
    21  * by Oracle in the GPL Version 2 section of the License file that
    22  * accompanied this code. If applicable, add the following below the
    23  * License Header, with the fields enclosed by brackets [] replaced by
    24  * your own identifying information:
    25  * "Portions Copyrighted [year] [name of copyright owner]"
    26  *
    27  * Contributor(s):
    28  *
    29  * The Original Software is NetBeans. The Initial Developer of the Original
    30  * Software is Oracle. Portions Copyright 2013-2014 Oracle. All Rights Reserved.
    31  *
    32  * If you wish your version of this file to be governed by only the CDDL
    33  * or only the GPL Version 2, indicate your decision by adding
    34  * "[Contributor] elects to include this software in this distribution
    35  * under the [CDDL or GPL Version 2] license." If you do not indicate a
    36  * single choice of license, a recipient has the option to distribute
    37  * your version of this file under either the CDDL, the GPL Version 2 or
    38  * to extend the choice of license to its licensees as provided above.
    39  * However, if you add GPL Version 2 code and therefore, elected the GPL
    40  * Version 2 license, then the option applies only if the new code is
    41  * made subject to such option by the copyright holder.
    42  */
    43 package org.netbeans.html.json.impl;
    44 
    45 import java.util.List;
    46 import java.util.Map;
    47 import net.java.html.BrwsrCtx;
    48 import net.java.html.json.ComputedProperty;
    49 import net.java.html.json.Model;
    50 import net.java.html.json.Models;
    51 import net.java.html.json.Property;
    52 import org.apidesign.html.context.spi.Contexts;
    53 import org.apidesign.html.json.spi.Technology;
    54 import org.apidesign.html.json.spi.Transfer;
    55 import org.netbeans.html.json.impl.DeepChangeTest.MapTechnology;
    56 import org.netbeans.html.json.impl.DeepChangeTest.One;
    57 import static org.testng.Assert.*;
    58 import org.testng.annotations.BeforeMethod;
    59 import org.testng.annotations.Test;
    60 
    61 /**
    62  *
    63  * @author Jaroslav Tulach
    64  */
    65 @Model(className = "TodoUI", properties = {
    66     @Property(name = "todos", type = Todo.class, array = true),
    67     @Property(name = "todoText", type = String.class)
    68 })
    69 public class ToDoTest {
    70     @Model(className = "Todo", properties = {
    71         @Property(name = "text", type = String.class),
    72         @Property(name = "done", type = boolean.class)
    73     })
    74     static class ItemCtrl {
    75     }
    76 
    77     @ComputedProperty
    78     static int remaining(
    79         List<Todo> todos, String todoText
    80     ) {
    81         int count = 0;
    82         for (Todo d : todos) {
    83             if (!d.isDone()) {
    84                 count++;
    85             }
    86         }
    87         return count;
    88     }
    89     
    90     private MapTechnology t;
    91     private BrwsrCtx c;
    92 
    93     @BeforeMethod
    94     public void initTechnology() {
    95         t = new MapTechnology();
    96         c = Contexts.newBuilder().register(Technology.class, t, 1).
    97                 register(Transfer.class, t, 1).build();
    98     }
    99     
   100     
   101     @Test public void checkAndUncheckFirstItem() throws Exception {
   102         TodoUI ui = Models.bind(
   103                 new TodoUI(
   104                     null,
   105                     new Todo("First", false),
   106                     new Todo("2nd", true),
   107                     new Todo("Third", false)
   108                 ), c).applyBindings();
   109 
   110         Map m = (Map) Models.toRaw(ui);
   111         Object v = m.get("remaining");
   112         assertNotNull(v, "Value should be in the map");
   113         assertEquals(v.getClass(), One.class, "It is instance of One");
   114         One o = (One) v;
   115         assertEquals(o.changes, 0, "No changes so far");
   116         assertTrue(o.pb.isReadOnly(), "Derived property");
   117         assertEquals(o.get(), 2);
   118 
   119         ui.getTodos().get(0).setDone(true);
   120 
   121         assertEquals(o.get(), 1);
   122         assertEquals(o.changes, 1, "One change so far");
   123 
   124         ui.getTodos().get(0).setDone(false);
   125 
   126         assertEquals(o.get(), 2);
   127         assertEquals(o.changes, 2, "2nd change so far");
   128         
   129     }
   130     
   131 }