Java tutorial
/* * Copyright (c) 2014 TIKINOU LLC * * 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 org.mythtv.services.api.v027; import com.squareup.okhttp.OkHttpClient; import org.junit.Assert; import org.mythtv.services.api.ApiVersion; import org.mythtv.services.api.ETagInfo; import org.mythtv.services.api.MythTvApi027Context; import org.mythtv.services.api.MythTvApiContext; import org.mythtv.services.api.v027.beans.VideoMetadataInfoList; import retrofit.Callback; import retrofit.RetrofitError; import retrofit.client.Response; public class VideoServiceTest { private static final String VIDEO_LIST_REQ_ID = "VIDEO_LIST_REQ_ID"; private VideoService videoService; private MythTvApi027Context context; // @org.junit.Test public void testGetVideoList() throws Exception { try { ETagInfo eTagInfo = context.getEtag(VIDEO_LIST_REQ_ID, true); VideoMetadataInfoList list = videoService.getVideoList(null, null, null, eTagInfo, VIDEO_LIST_REQ_ID); Assert.assertNotNull(list); // at this point the etag from the response is set. // this call will cause a Retrofit error to be thrown with a HTTP Kind and a 304 response code which means no data changed list = videoService.getVideoList(null, null, null, eTagInfo, VIDEO_LIST_REQ_ID); } catch (RetrofitError e) { int i = e.getResponse().getStatus(); if (e.getKind() == RetrofitError.Kind.HTTP && i == MythTvApiContext.ETAG_MATCH_HTTP_RESPONSE_CODE) return; throw e; } } // @org.junit.Test public void testGetVideoListAsync() throws Exception { Callback<VideoMetadataInfoList> callback = new Callback<VideoMetadataInfoList>() { @Override public void success(VideoMetadataInfoList videoMetadataInfoList, Response response) { System.out.println("success"); } @Override public void failure(RetrofitError error) { System.out.println("fail"); } }; videoService.getVideoList(null, null, null, null, null, callback); Thread.sleep(2000); } // @org.junit.Before public void setUp() throws Exception { OkHttpClient okHttpClient = new OkHttpClient(); okHttpClient.setFollowRedirects(true); context = (MythTvApi027Context) MythTvApiContext.newBuilder().setOkHttpClient(okHttpClient) .setHostName("master").setVersion(ApiVersion.v027).build(); videoService = context.getVideoService(); } }