Android Open Source - AndroidPlaces Places Request Test






From Project

Back to project page AndroidPlaces.

License

The source code is released under:

Apache License

If you think the Android project AndroidPlaces listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright (C) 2014 Brian Lee/* w  w  w .j  a  va2 s . co  m*/
 *
 * Licensed 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 com.tigerpenguin.places.request;

import android.content.Context;
import com.tigerpenguin.places.response.PlacesResponse;
import com.tigerpenguin.places.response.PlacesResponseFactory;
import com.tigerpenguin.places.responsehandler.PlacesResponseHandler;

public class PlacesRequestTest extends RequestTest {

    public void testBasicUrl() throws Exception {
        TestPlacesRequest testPlacesRequest = new TestPlacesRequest(getContext());
        String url = testPlacesRequest.createUrl();
        url = checkAndRemoveBaseParams(getContext(), url, null);
        checkUrlEmpty(url);
        checkValidation(testPlacesRequest);
    }

    public void testSuperValidateCalled() throws Exception {
        RudePlacesRequest rudePlacesRequest = new RudePlacesRequest(getContext());
        boolean exceptionCaught = false;
        try {
            rudePlacesRequest.execute();
        } catch (IllegalStateException ise) {
            exceptionCaught = true;
        }
        assertTrue("PlacesRequest executed without calling through super.validate()", exceptionCaught);

    }

    public void testSetParameter() throws Exception {
        final String parameter = "foo";
        final String value = "bar";
        TestPlacesRequest testPlacesRequest = new TestPlacesRequest(getContext());
        testPlacesRequest.setParameter(parameter, value);

        // checkParameterDefined
        try {
            testPlacesRequest.checkParameterDefined(parameter, "");
        } catch (InvalidRequestException ire) {
            fail("Unable to find parameter that was set");
        }

        // getParameter
        assertEquals(value, testPlacesRequest.getParameter(parameter));

        // unset
        testPlacesRequest.setParameter(parameter, null);

        boolean exceptionCaught = false;
        try {
            testPlacesRequest.checkParameterDefined(parameter, "");
        } catch (InvalidRequestException ire) {
            exceptionCaught = true;
        }
        assertTrue("Parameter wasn't unset", exceptionCaught);
        assertNull("Parameter wasn't unset", testPlacesRequest.getParameter(parameter));
    }

    public void testRemoveParameter() throws Exception {
        final String parameter = "foo";
        final String value = "bar";
        TestPlacesRequest testPlacesRequest = new TestPlacesRequest(getContext());
        testPlacesRequest.setParameter(parameter, value);

        // checkParameterDefined
        try {
            testPlacesRequest.checkParameterDefined(parameter, "");
        } catch (InvalidRequestException ire) {
            fail("Unable to find parameter that was set");
        }

        testPlacesRequest.removeParameter(parameter);

        boolean exceptionCaught = false;
        try {
            testPlacesRequest.checkParameterDefined(parameter, "");
        } catch (InvalidRequestException ire) {
            exceptionCaught = true;
        }
        assertTrue("Parameter wasn't unset", exceptionCaught);
        assertNull("Parameter wasn't unset", testPlacesRequest.getParameter(parameter));
    }


    private static class TestPlacesRequest extends PlacesRequest<PlacesRequest, PlacesResponse> {

        private TestPlacesRequest(Context context) {
            super(context, new TestResponseHandler());
        }

        @Override
        protected PlacesResponseFactory<PlacesRequest, PlacesResponse> getResponseFactory() {
            return null;
        }

        @Override
        protected PlacesRequest getThis() {
            return null;
        }

        @Override
        protected String getRequestPath() {
            return "";
        }
    }

    private static class RudePlacesRequest extends TestPlacesRequest {

        private RudePlacesRequest(Context context) {
            super(context);
        }

        @Override
        protected void validate() throws InvalidRequestException {
            // don't call super()
        }
    }

    private static class TestResponseHandler implements PlacesResponseHandler<PlacesResponse> {
        @Override
        public void handleResponse(PlacesResponse response) {

        }
    }
}




Java Source Code List

com.tigerpenguin.demo.places.PlaceDetailActivity.java
com.tigerpenguin.demo.places.PlaceResultAdapter.java
com.tigerpenguin.demo.places.PlaceResultsFragment.java
com.tigerpenguin.demo.places.PlaceReviewAdapter.java
com.tigerpenguin.demo.places.PlaceReviewsFragment.java
com.tigerpenguin.demo.places.PlaceThumbnailAdapter.java
com.tigerpenguin.demo.places.PlaceThumbnailsFragment.java
com.tigerpenguin.demo.places.PlacesDemo.java
com.tigerpenguin.places.PlacesTest.java
com.tigerpenguin.places.deserializer.HtmlStringDeserializer.java
com.tigerpenguin.places.deserializer.PlaceTypeDeserializer.java
com.tigerpenguin.places.model.AddressComponent.java
com.tigerpenguin.places.model.AspectRating.java
com.tigerpenguin.places.model.AspectType.java
com.tigerpenguin.places.model.DayOfWeek.java
com.tigerpenguin.places.model.DayTime.java
com.tigerpenguin.places.model.Geometry.java
com.tigerpenguin.places.model.JsonModel.java
com.tigerpenguin.places.model.Language.java
com.tigerpenguin.places.model.OpeningHours.java
com.tigerpenguin.places.model.Period.java
com.tigerpenguin.places.model.Photo.java
com.tigerpenguin.places.model.PlaceDetail.java
com.tigerpenguin.places.model.PlaceLocation.java
com.tigerpenguin.places.model.PlaceType.java
com.tigerpenguin.places.model.Place.java
com.tigerpenguin.places.model.PriceLevel.java
com.tigerpenguin.places.model.RankBy.java
com.tigerpenguin.places.model.Review.java
com.tigerpenguin.places.model.StatusCode.java
com.tigerpenguin.places.request.InvalidRequestException.java
com.tigerpenguin.places.request.NearbySearchRequestTest.java
com.tigerpenguin.places.request.NearbySearchRequest.java
com.tigerpenguin.places.request.PlaceDetailRequestTest.java
com.tigerpenguin.places.request.PlaceDetailRequest.java
com.tigerpenguin.places.request.PlaceSearchRequestTest.java
com.tigerpenguin.places.request.PlaceSearchRequest.java
com.tigerpenguin.places.request.PlacesRequestTest.java
com.tigerpenguin.places.request.PlacesRequest.java
com.tigerpenguin.places.request.RequestTest.java
com.tigerpenguin.places.response.NearbySearchResponseFactory.java
com.tigerpenguin.places.response.NearbySearchResponse.java
com.tigerpenguin.places.response.PlaceDetailResponseFactory.java
com.tigerpenguin.places.response.PlaceDetailResponse.java
com.tigerpenguin.places.response.PlaceSearchResponse.java
com.tigerpenguin.places.response.PlacesResponseFactory.java
com.tigerpenguin.places.response.PlacesResponse.java
com.tigerpenguin.places.responsehandler.NearbySearchHandlerFragment.java
com.tigerpenguin.places.responsehandler.PlaceDetailResponseHandlerFragment.java
com.tigerpenguin.places.responsehandler.PlacesResponseHandler.java
com.tigerpenguin.widget.simpleratingbar.MockAttributes.java
com.tigerpenguin.widget.simpleratingbar.SimpleRatingBarAttributes.java
com.tigerpenguin.widget.simpleratingbar.SimpleRatingBarTest.java
com.tigerpenguin.widget.simpleratingbar.SimpleRatingBar.java