ko-archetype/src/main/resources/archetype-resources/src/test/java/TwitterProtocolTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 29 May 2013 19:36:31 +0200
changeset 1222 345274016cb9
parent 1202 5f04bdbc6ee1
permissions -rw-r--r--
Replacing Context in archetype
     1 package ${package};
     2 
     3 import org.apidesign.bck2brwsr.vmtest.BrwsrTest;
     4 import org.apidesign.bck2brwsr.vmtest.Http;
     5 import org.apidesign.bck2brwsr.vmtest.VMTest;
     6 import org.testng.annotations.Factory;
     7 
     8 public class TwitterProtocolTest {
     9     private TwitterModel page;
    10     @Http(@Http.Resource(
    11         path = "/search.json",
    12         mimeType = "application/json",
    13         parameters = {"callback"},
    14         content = "$0({\"completed_in\":0.04,\"max_id\":320055706885689344,\"max_id_str\""
    15         + ":\"320055706885689344\",\"page\":1,\"query\":\"from%3AJaroslavTulach\",\"refresh_url\":"
    16         + "\"?since_id=320055706885689344&q=from%3AJaroslavTulach\","
    17         + "\"results\":[{\"created_at\":\"Fri, 05 Apr 2013 06:10:01 +0000\","
    18         + "\"from_user\":\"JaroslavTulach\",\"from_user_id\":420944648,\"from_user_id_str\":"
    19         + "\"420944648\",\"from_user_name\":\"Jaroslav Tulach\",\"geo\":null,\"id\":320055706885689344,"
    20         + "\"id_str\":\"320055706885689344\",\"iso_language_code\":\"en\",\"metadata\":{\"result_type\":"
    21         + "\"recent\"},\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1656828312\\/jst_normal.gif\","
    22         + "\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1656828312\\/jst_normal.gif\","
    23         + "\"source\":\"&lt;a href=&quot;http:\\/\\/twitter.com\\/&quot;&gt;web&lt;\\/a&gt;\",\"text\":"
    24         + "\"@tom_enebo Amzng! Not that I would like #ruby, but I am really glad you guys stabilized the plugin + "
    25         + "made it work in #netbeans 7.3! Gd wrk.\",\"to_user\":\"tom_enebo\",\"to_user_id\":14498747,"
    26         + "\"to_user_id_str\":\"14498747\",\"to_user_name\":\"tom_enebo\",\"in_reply_to_status_id\":319832359509839872,"
    27         + "\"in_reply_to_status_id_str\":\"319832359509839872\"},{\"created_at\":\"Thu, 04 Apr 2013 07:33:06 +0000\","
    28         + "\"from_user\":\"JaroslavTulach\",\"from_user_id\":420944648,\"from_user_id_str\":"
    29         + "\"420944648\",\"from_user_name\":\"Jaroslav Tulach\",\"geo\":null,\"id\":319714227088678913,"
    30         + "\"id_str\":\"319714227088678913\",\"iso_language_code\":\"en\",\"metadata\":{\"result_type\":"
    31         + "\"recent\"},\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1656828312\\/jst_normal.gif\","
    32         + "\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1656828312\\/jst_normal.gif\","
    33         + "\"source\":\"&lt;a href=&quot;http:\\/\\/twitter.com\\/&quot;&gt;web&lt;\\/a&gt;\",\"text\":"
    34         + "\"RT @drkrab: At #erlangfactory @joerl: Frameworks grow in complexity until nobody can use them.\"},"
    35         + "{\"created_at\":\"Tue, 02 Apr 2013 07:44:34 +0000\",\"from_user\":\"JaroslavTulach\","
    36         + "\"from_user_id\":420944648,\"from_user_id_str\":\"420944648\",\"from_user_name\":\"Jaroslav Tulach\","
    37         + "\"geo\":null,\"id\":318992336145248256,\"id_str\":\"318992336145248256\",\"iso_language_code\":\"en\","
    38         + "\"metadata\":{\"result_type\":\"recent\"},\"profile_image_url\":"
    39         + "\"http:\\/\\/a0.twimg.com\\/profile_images\\/1656828312\\/jst_normal.gif\","
    40         + "\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1656828312\\/jst_normal.gif\","
    41         + "\"source\":\"&lt;a href=&quot;http:\\/\\/twitter.com\\/&quot;&gt;web&lt;\\/a&gt;\",\"text\":"
    42         + "\"Twitter renamed to twttr http:\\/\\/t.co\\/tqaN4T1xlZ - good, I don't have to rename #bck2brwsr!\"},"
    43         + "{\"created_at\":\"Sun, 31 Mar 2013 03:52:04 +0000\",\"from_user\":\"JaroslavTulach\",\"from_user_id\":420944648,"
    44         + "\"from_user_id_str\":\"420944648\",\"from_user_name\":\"Jaroslav Tulach\",\"geo\":null,"
    45         + "\"id\":318209051223789568,\"id_str\":\"318209051223789568\",\"iso_language_code\":\"en\",\"metadata\":"
    46         + "{\"result_type\":\"recent\"},\"profile_image_url\":"
    47         + "\"http:\\/\\/a0.twimg.com\\/profile_images\\/1656828312\\/jst_normal.gif\","
    48         + "\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1656828312\\/jst_normal.gif\","
    49         + "\"source\":\"&lt;a href=&quot;http:\\/\\/twitter.com\\/&quot;&gt;web&lt;\\/a&gt;\",\"text\":"
    50         + "\"Math proofs without words. Ingenious: http:\\/\\/t.co\\/sz7yVbfpGw\"}],\"results_per_page\":100,"
    51         + "\"since_id\":0,\"since_id_str\":\"0\"})"
    52     ))
    53     @BrwsrTest public void readFromTwttr() throws InterruptedException {
    54         if (page == null) {
    55             page = new TwitterModel();
    56             page.applyBindings();
    57             page.queryTweets("", "q=xyz");
    58         }
    59 
    60         if (page.getCurrentTweets().isEmpty()) {
    61             throw new InterruptedException();
    62         }
    63 
    64         assert 4 == page.getCurrentTweets().size() : "Four tweets: " + page.getCurrentTweets();
    65         
    66         String firstDate = page.getCurrentTweets().get(0).getCreated_at();
    67         assert "Fri, 05 Apr 2013 06:10:01 +0000".equals(firstDate) : "Date is OK: " + firstDate;
    68     }
    69     
    70     @Factory public static Object[] create() {
    71         return VMTest.create(TwitterProtocolTest.class);
    72     }
    73 }