Package org.slim3.tester

Examples of org.slim3.tester.MockHttpServletRequest


    }

    @Test
    public void getMethodForREST_POST() throws Exception {
        ScenicFrontController target = new ScenicFrontControllerStub("controller");
        MockHttpServletRequest request = getRequest("POST");
        assertThat(target.getMethodForREST(request), is("POST"));
    }
View Full Code Here


    }

    @Test
    public void getMethodForREST_xPUT() throws Exception {
        ScenicFrontController target = new ScenicFrontControllerStub("controller");
        MockHttpServletRequest request = getRequest("POST");
        request.setHeader("X-HTTP-Override-Method", "PUT");
        assertThat(target.getMethodForREST(request), is("PUT"));
    }
View Full Code Here

    }

    @Test
    public void getMethodForREST_xDELETE() throws Exception {
        ScenicFrontController target = new ScenicFrontControllerStub("controller");
        MockHttpServletRequest request = getRequest("POST");
        request.setHeader("X-HTTP-Override-Method", "DELETE");
        assertThat(target.getMethodForREST(request), is("DELETE"));
    }
View Full Code Here

    }

    @Test
    public void getMethodForREST_method_PUT() throws Exception {
        ScenicFrontController target = new ScenicFrontControllerStub("controller");
        MockHttpServletRequest request = getRequest("POST");
        request.setParameter("_method", "PUT");
        assertThat(target.getMethodForREST(request), is("PUT"));
    }
View Full Code Here

    }

    @Test
    public void getMethodForREST_method_DELETE() throws Exception {
        ScenicFrontController target = new ScenicFrontControllerStub("controller");
        MockHttpServletRequest request = getRequest("POST");
        request.setParameter("_method", "DELETE");
        assertThat(target.getMethodForREST(request), is("DELETE"));
    }
View Full Code Here

        assertThat(target.getMethodForREST(request), is("DELETE"));
    }

    private MockHttpServletRequest getRequest(String method) {
        MockServletContext ctx = new MockServletContext();
        MockHttpServletRequest request = new MockHttpServletRequest(ctx);
        request.setMethod(method);
        return request;
    }
View Full Code Here

    static {
        initialize();
    }

    private static void initialize() {
        Cleaner.add(new Cleanable() {
            public void clean() {
                modelMetaCache.clear();
                initialized = false;
            }
        });
View Full Code Here

    private TwitterService service = new TwitterService();
    private TweetMeta meta = TweetMeta.get();

    @Override
    public Navigation run() throws Exception {
        RequestMap requestMap = new RequestMap(request);
//        int index = Integer.parseInt(requestMap.get("index").toString());
//        String content = requestMap.get("content").toString();
//        List<Tweet> listTween = service.getTweetList();
//        int maxIndex = listTween.size();
//        if (index < maxIndex) {
//            service.updateTweet(listTween.get(index).getKey(), content);
//            listTween = service.getTweetList();
//            requestScope("tweetList", listTween);
//        }
        if (validate() && (!requestMap.get("content").toString().trim().equals(""))) {
            service.updateTweet(asKey(meta.key), asLong(meta.version), requestMap);
        } else {
            return forward ("edit.jsp");
        }
        return redirect(basePath);
View Full Code Here

    private TwitterService service = new TwitterService();
    private TweetMeta meta = TweetMeta.get();

    @Override
    public Navigation run() throws Exception {
        RequestMap requestMap = new RequestMap(request);
        if (validate() && (!requestMap.get("content").toString().trim().equals(""))) {
            service.tweet(requestMap);
        }
        return redirect(basePath);
    }
View Full Code Here

                encoding = "UTF-8";
            }
            try {
                return URLEncoder.encode(path, encoding);
            } catch (UnsupportedEncodingException e) {
                throw new WrapRuntimeException(e);
            }
        }
View Full Code Here

TOP

Related Classes of org.slim3.tester.MockHttpServletRequest

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.