Package org.apache.shindig.gadgets.servlet

Source Code of org.apache.shindig.gadgets.servlet.JsonRpcGadgetContextTest

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.  You may obtain a copy of the License at
*
*   http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied.  See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.shindig.gadgets.servlet;

import com.google.common.collect.Maps;

import org.apache.shindig.gadgets.GadgetContext;

import junit.framework.TestCase;

import org.json.JSONObject;

import java.util.Locale;
import java.util.Map;

public class JsonRpcGadgetContextTest extends TestCase {
  final static String SPEC_URL = "http://example.org/gadget.xml";
  final static int SPEC_ID = 1234;
  final static String[] PREF_KEYS = {"hello", "foo"};
  final static String[] PREF_VALUES = {"world", "bar"};
  final static Map<String, String> prefs = Maps.newHashMap();
  static {
    for (int i = 0, j = PREF_KEYS.length; i < j; ++i) {
      prefs.put(PREF_KEYS[i], PREF_VALUES[i]);
    }
  }

  public void testCorrectExtraction() throws Exception {
    JSONObject gadget = new JSONObject()
        .put("url", SPEC_URL)
        .put("moduleId", SPEC_ID)
        .put("prefs", prefs)
        .put("gadget-field", "gadget-value");

    JSONObject context = new JSONObject()
        .put("language", Locale.US.getLanguage())
        .put("country", Locale.US.getCountry().toUpperCase())
        .put("context-field", "context-value");

    GadgetContext jsonContext = new JsonRpcGadgetContext(context, gadget);
    assertEquals(SPEC_URL, jsonContext.getUrl().toString());
    assertEquals(SPEC_ID, jsonContext.getModuleId());
    assertEquals(Locale.US.getLanguage(),
                 jsonContext.getLocale().getLanguage());
    assertEquals(Locale.US.getCountry(), jsonContext.getLocale().getCountry());

    for (String key : PREF_KEYS) {
      String value = jsonContext.getUserPrefs().getPref(key);
      assertEquals(prefs.get(key), value);
    }

    assertEquals("gadget-value", jsonContext.getParameter("gadget-field"));
    assertEquals("context-value", jsonContext.getParameter("context-field"));
  }
}
TOP

Related Classes of org.apache.shindig.gadgets.servlet.JsonRpcGadgetContextTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.