Package org.mozilla.javascript

Examples of org.mozilla.javascript.ScriptableObject$Slot


                               final Object[] args,
                               Function funObj)
        throws JavaScriptException {
        int len = args.length;
        final Window window = ((RhinoInterpreter.ExtendedContext)cx).getWindow();
        final ScriptableObject go = ((RhinoInterpreter.ExtendedContext)cx).getGlobalObject();
        if (len < 3) {
            throw Context.reportRuntimeError("invalid argument count");
        }
        RhinoInterpreter interp =
            (RhinoInterpreter)window.getInterpreter();
View Full Code Here


            this.content = content;
            this.scope   = scope;
        }

        public Object[] buildArguments() {
            ScriptableObject so = new NativeObject();
            so.put("success", so,
                   (success) ? Boolean.TRUE : Boolean.FALSE);
            if (mime != null) {
                so.put("contentType", so,
                       Context.toObject(mime, scope));
            }
            if (content != null) {
                so.put("content", so,
                       Context.toObject(content, scope));
            }
            return new Object [] { so };
        }
View Full Code Here

  @Test
  @Ignore
  public void createSaveBoard() throws GameEngineException {
    API api = new API();
    ScriptableObject board = api.createBoard();

    String json = (String) ge.invoke(board, "stringify");

    Long id = api.getId(board);
    Entity result;
    if (id != null) {
      result = ge.persistence.save("Board", id, "json", json);
    } else {
      result = ge.persistence.save("Board");
      id = result.getKey().getId();
    }
    api.setId(board, result.getKey().getId());

    json = (String) ge.invoke(board, "stringify");

    result = ge.persistence.save("Board", id, "json", json);

    api.update(board, json);

    json = (String) ge.invoke(board, "stringify");

    assertEquals(1, board.get("id"));
  }
View Full Code Here

  }

  @Test
  public void createBoard() throws GameEngineException {

    ScriptableObject board = ge.execute("new Board();");

    ge.invoke(board, "grow", new Integer[] { 1, 0, 3, 1 });
    // board.grow(1, 0, 3, 1);

    ge.invoke(board, "grow", new Integer[] { 0, 1, 5, 3 });
    // board.grow(0, 1, 5, 3);

    ge.invoke(board, "grow", new Integer[] { 2, 4, 1, 1 });
    // board.grow(2, 4, 1, 1); // return the board data

    assertEquals(32, board.get("size"));

  }
View Full Code Here

  }

  @Test
  public void testAPI() throws GameEngineException {
    API api = new API();
    @SuppressWarnings("unused")
    ScriptableObject table = api.createTable("2", "50", "3", "6", "6",
        "neutral allowed", "annihilation");
  }
View Full Code Here

public class APITest extends GAETestCase {

  @Test
  public void newBoard() throws GameEngineException {
    API api = new API();
    ScriptableObject board = api.createBoard();
    assertEquals(32, board.get("size"));
  }
View Full Code Here

  @Test
  @Ignore
  public void stringify() throws GameEngineException {
    API api = new API();
    ScriptableObject board = api.save(api.createBoard());

    assertEquals(1L, board.get("id"));

    Object result = api.stringify(board);

    assertEquals("", result);
  }
View Full Code Here

  }

  @Test
  public void saveBoard() throws GameEngineException {
    API api = new API();
    ScriptableObject board = api.createBoard();
    assertEquals(32, board.get("size"));

    ScriptableObject s = api.save(board);

    assertEquals(1L, s.get("id"));
  }
View Full Code Here

  }

  @Test
  public void loadBoard() throws GameEngineException {
    API api = new API();
    ScriptableObject board1 = api.createBoard();
    assertEquals(32, board1.get("size"));

    board1 = api.save(board1);
    assertEquals(1L, board1.get("id"));

    ScriptableObject board2 = api.getBoard(1);
    assertEquals(1, board2.get("id"));
  }
View Full Code Here

  }

  @Test
  public void update() throws GameEngineException {
    API api = new API();
    ScriptableObject board = api.createBoard();
    assertEquals(32, board.get("size"));

    assertEquals(null, board.get("id"));

    GameEngine ge = new GameEngine(new String[] {
        "/com/antonytrupe/tend/Resource.js",
        "/com/antonytrupe/tend/ResourceGroup.js",
        "/com/antonytrupe/tend/Point.js",
        "/com/antonytrupe/tend/Board.js",
        "/com/antonytrupe/tend/Player.js",
        "/com/antonytrupe/tend/Trade.js",
        "/com/antonytrupe/tend/Settlement.js" });
    ge.invoke(board, "update", new String[] { "{\"board\":"
        + "{\"id\":1,\"players\":{}}" + "}" });
    assertEquals(1, board.get("id"));
  }
View Full Code Here

TOP

Related Classes of org.mozilla.javascript.ScriptableObject$Slot

Copyright © 2018 www.massapicom. 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.