javaquery/api/src/test/java/org/apidesign/bck2brwsr/htmlpage/JSONTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 07 Apr 2013 17:42:50 +0200
branchmodel
changeset 941 d1e482f73507
parent 936 6fe5b2b4b82e
child 943 28aae214c202
permissions -rw-r--r--
Using InterruptedException to make the JSONTests pass
     1 /**
     2  * Back 2 Browser Bytecode Translator
     3  * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. Look for COPYING file in the top folder.
    16  * If not, see http://opensource.org/licenses/GPL-2.0.
    17  */
    18 package org.apidesign.bck2brwsr.htmlpage;
    19 
    20 import java.util.Arrays;
    21 import java.util.Iterator;
    22 import java.util.List;
    23 import org.apidesign.bck2brwsr.htmlpage.api.OnReceive;
    24 import org.apidesign.bck2brwsr.htmlpage.api.Page;
    25 import org.apidesign.bck2brwsr.htmlpage.api.Property;
    26 import org.apidesign.bck2brwsr.vmtest.BrwsrTest;
    27 import org.apidesign.bck2brwsr.vmtest.Http;
    28 import org.apidesign.bck2brwsr.vmtest.VMTest;
    29 import org.json.JSONException;
    30 import org.json.JSONObject;
    31 import org.json.JSONTokener;
    32 import org.testng.annotations.Test;
    33 import static org.testng.Assert.*;
    34 import org.testng.annotations.Factory;
    35 
    36 /** Need to verify that models produce reasonable JSON objects.
    37  *
    38  * @author Jaroslav Tulach <jtulach@netbeans.org>
    39  */
    40 @Page(xhtml = "Empty.html", className = "JSONik", properties = {
    41     @Property(name = "fetched", type = PersonImpl.class),
    42     @Property(name = "fetchedCount", type = int.class)
    43 })
    44 public class JSONTest {
    45     private JSONik js;
    46     
    47     @Test public void personToString() throws JSONException {
    48         Person p = new Person();
    49         p.setSex(Sex.MALE);
    50         p.setFirstName("Jarda");
    51         p.setLastName("Tulach");
    52         
    53         JSONTokener t = new JSONTokener(p.toString());
    54         JSONObject o;
    55         try {
    56             o = new JSONObject(t);
    57         } catch (JSONException ex) {
    58             throw new AssertionError("Can't parse " + p.toString(), ex);
    59         }
    60         
    61         Iterator it = o.sortedKeys();
    62         assertEquals(it.next(), "firstName");
    63         assertEquals(it.next(), "lastName");
    64         assertEquals(it.next(), "sex");
    65         
    66         assertEquals(o.getString("firstName"), "Jarda");
    67         assertEquals(o.getString("lastName"), "Tulach");
    68         assertEquals(o.getString("sex"), "MALE");
    69     }
    70     
    71     @Test public void personWithWildCharactersAndNulls() throws JSONException {
    72         Person p = new Person();
    73         p.setFirstName("'\"\n");
    74         p.setLastName("\t\r\u0002");
    75         
    76         JSONTokener t = new JSONTokener(p.toString());
    77         JSONObject o;
    78         try {
    79             o = new JSONObject(t);
    80         } catch (JSONException ex) {
    81             throw new AssertionError("Can't parse " + p.toString(), ex);
    82         }
    83         
    84         Iterator it = o.sortedKeys();
    85         assertEquals(it.next(), "firstName");
    86         assertEquals(it.next(), "lastName");
    87         assertEquals(it.next(), "sex");
    88         
    89         assertEquals(o.getString("firstName"), p.getFirstName());
    90         assertEquals(o.getString("lastName"), p.getLastName());
    91         assertEquals(o.get("sex"), JSONObject.NULL);
    92     }
    93     
    94     @Test public void personsInArray() throws JSONException {
    95         Person p1 = new Person();
    96         p1.setFirstName("One");
    97 
    98         Person p2 = new Person();
    99         p2.setFirstName("Two");
   100         
   101         People arr = new People();
   102         arr.getInfo().add(p1);
   103         arr.getInfo().add(p2);
   104         arr.getNicknames().add("Prvn\u00ed k\u016f\u0148");
   105         final String n2 = "Druh\u00fd hlem\u00fd\u017e\u010f, star\u0161\u00ed";
   106         arr.getNicknames().add(n2);
   107         arr.getAge().add(33);
   108         arr.getAge().add(73);
   109         
   110         
   111         final String json = arr.toString();
   112         
   113         JSONTokener t = new JSONTokener(json);
   114         JSONObject o;
   115         try {
   116             o = new JSONObject(t);
   117         } catch (JSONException ex) {
   118             throw new AssertionError("Can't parse " + json, ex);
   119         }
   120 
   121         assertEquals(o.getJSONArray("info").getJSONObject(0).getString("firstName"), "One");
   122         assertEquals(o.getJSONArray("nicknames").getString(1), n2);
   123         assertEquals(o.getJSONArray("age").getInt(1), 73);
   124     }
   125     
   126     
   127     @OnReceive(url="/{url}")
   128     static void fetch(Person p, JSONik model) {
   129         model.setFetched(p);
   130         throw new IllegalStateException("Got him: " + p);
   131     }
   132 
   133     @OnReceive(url="/{url}")
   134     static void fetchArray(Person[] p, JSONik model) {
   135         model.setFetchedCount(p.length);
   136         model.setFetched(p[0]);
   137         throw new IllegalStateException("Got in array him: " + Arrays.asList(p));
   138     }
   139     
   140     @Http(@Http.Resource(
   141         content = "{'firstName': 'Sitar', 'sex': 'MALE'}", 
   142         path="/person.json", 
   143         mimeType = "application/json"
   144     ))
   145     @BrwsrTest public void loadAndParseJSON() throws InterruptedException {
   146         if (js == null) {
   147             js = new JSONik();
   148             js.applyBindings();
   149 
   150             js.fetch("person.json");
   151         }
   152     
   153         Person p = js.getFetched();
   154         if (p == null) {
   155             throw new InterruptedException();
   156         }
   157         
   158         assert p != null : "We should get our person back: " + p;
   159         assert "Sitar".equals(p.getFirstName()) : "Expecting Sitar: " + p.getFirstName();
   160       //  assert Sex.MALE.equals(p.getSex()) : "Expecting MALE: " + p.getSex();
   161     }
   162 
   163     @Http(@Http.Resource(
   164         content = "{'firstName': 'Sitar', 'sex': 'MALE'}", 
   165         path="/person.json", 
   166         mimeType = "application/json"
   167     ))
   168     @BrwsrTest public void loadAndParseJSONSentToArray() throws InterruptedException {
   169         if (js == null) {
   170             js = new JSONik();
   171             js.applyBindings();
   172 
   173             js.fetchArray("person.json");
   174         }
   175         
   176         Person p = js.getFetched();
   177         if (p == null) {
   178             throw new InterruptedException();
   179         }
   180         
   181         assert p != null : "We should get our person back: " + p;
   182         assert "Sitar".equals(p.getFirstName()) : "Expecting Sitar: " + p.getFirstName();
   183 //        assert Sex.MALE.equals(p.getSex()) : "Expecting MALE: " + p.getSex();
   184     }
   185     
   186     @Http(@Http.Resource(
   187         content = "[{'firstName': 'Gitar', 'sex': 'FEMALE'}]", 
   188         path="/person.json", 
   189         mimeType = "application/json"
   190     ))
   191     @BrwsrTest public void loadAndParseJSONArraySingle() throws InterruptedException {
   192         if (js == null) {
   193             js = new JSONik();
   194             js.applyBindings();
   195         
   196             js.fetch("person.json");
   197         }
   198         
   199         Person p = js.getFetched();
   200         if (p == null) {
   201             throw new InterruptedException();
   202         }
   203         
   204         assert p != null : "We should get our person back: " + p;
   205         assert "Gitar".equals(p.getFirstName()) : "Expecting Gitar: " + p.getFirstName();
   206 //        assert Sex.MALE.equals(p.getSex()) : "Expecting MALE: " + p.getSex();
   207     }
   208     
   209     @Http(@Http.Resource(
   210         content = "[{'firstName': 'Gitar', 'sex': 'FEMALE'},"
   211         + "{'firstName': 'Peter', 'sex': 'MALE'}"
   212         + "]", 
   213         path="/person.json", 
   214         mimeType = "application/json"
   215     ))
   216     @BrwsrTest public void loadAndParseJSONArray() throws InterruptedException {
   217         if (js == null) {
   218             js = new JSONik();
   219             js.applyBindings();
   220             js.fetchArray("person.json");
   221         }
   222         
   223         
   224         Person p = js.getFetched();
   225         if (p == null) {
   226             throw new InterruptedException();
   227         }
   228         
   229         assert js.getFetchedCount() == 2 : "We got two values: " + js.getFetchedCount();
   230         assert p != null : "We should get our person back: " + p;
   231         assert "Gitar".equals(p.getFirstName()) : "Expecting Gitar: " + p.getFirstName();
   232 //        assert Sex.MALE.equals(p.getSex()) : "Expecting MALE: " + p.getSex();
   233     }
   234 
   235     @Factory public static Object[] create() {
   236         return VMTest.create(JSONTest.class);
   237     }
   238     
   239 }