use of com.instructure.canvasapi2.utils.LinkHeaders in project instructure-android by instructure.
the class QuizManager_Test method getQuizSubmissions.
public static void getQuizSubmissions(StatusCallback<QuizSubmissionResponse> callback) {
Response response = new Response.Builder().code(200).message("todo").protocol(Protocol.HTTP_1_0).body(ResponseBody.create(MediaType.parse("application/json"), "todo".getBytes())).addHeader("content-type", "application/json").build();
List<QuizSubmission> quizSubmissions = new ArrayList<>();
QuizSubmission quizSubmission = new QuizSubmission();
quizSubmission.setQuizId(456321L);
quizSubmissions.add(quizSubmission);
QuizSubmissionResponse quizSubmissionResponse = new QuizSubmissionResponse();
quizSubmissionResponse.setQuizSubmissions(quizSubmissions);
retrofit2.Response<QuizSubmissionResponse> response1 = retrofit2.Response.success(quizSubmissionResponse, response);
callback.onResponse(response1, new LinkHeaders(), ApiType.CACHE);
}
use of com.instructure.canvasapi2.utils.LinkHeaders in project instructure-android by instructure.
the class QuizManager_Test method getQuiz.
public static void getQuiz(StatusCallback<Quiz> callback) {
Response httpResponse = new Response.Builder().request(new Request.Builder().url("https://test.com").build()).code(200).message("todo").protocol(Protocol.HTTP_1_0).body(ResponseBody.create(MediaType.parse("application/json"), "todo".getBytes())).addHeader("content-type", "application/json").build();
Quiz quiz = new Quiz();
quiz.setTitle("TEST");
quiz.setDescription("description");
retrofit2.Response<Quiz> response = retrofit2.Response.success(new Quiz(), httpResponse);
callback.onResponse(response, new LinkHeaders(), ApiType.CACHE);
}
use of com.instructure.canvasapi2.utils.LinkHeaders in project instructure-android by instructure.
the class SubmissionManager_Test method getStudentSubmissionsForCourse.
public static void getStudentSubmissionsForCourse(long studentId, long courseId, StatusCallback<List<Submission>> callback) {
// TODO:
Response response = new Response.Builder().request(new Request.Builder().url("https://test.com").build()).code(200).message("todo").protocol(Protocol.HTTP_1_0).body(ResponseBody.create(MediaType.parse("application/json"), "todo".getBytes())).addHeader("content-type", "application/json").build();
List<Submission> submissions = new ArrayList<>();
retrofit2.Response<List<Submission>> response1 = retrofit2.Response.success(submissions, response);
callback.onResponse(response1, new LinkHeaders(), ApiType.CACHE);
}
use of com.instructure.canvasapi2.utils.LinkHeaders in project instructure-android by instructure.
the class ThemeManager_Test method getTheme.
public static void getTheme(final StatusCallback<CanvasTheme> callback) {
CanvasTheme theme = new Gson().fromJson(json, CanvasTheme.class);
retrofit2.Response<CanvasTheme> response = retrofit2.Response.success(theme);
callback.onResponse(response, new LinkHeaders(), ApiType.CACHE);
}
use of com.instructure.canvasapi2.utils.LinkHeaders in project instructure-android by instructure.
the class UserManager_Test method getColors.
public static void getColors(@NonNull RestBuilder adapter, @NonNull StatusCallback<CanvasColor> callback, @NonNull RestParams params) {
adapter.setStatusCallback(callback);
Response response = new Response.Builder().code(200).message("todo").protocol(Protocol.HTTP_1_0).body(ResponseBody.create(MediaType.parse("application/json"), "todo".getBytes())).addHeader("content-type", "application/json").build();
CanvasColor canvasColor = new CanvasColor();
retrofit2.Response<CanvasColor> response1 = retrofit2.Response.success(canvasColor, response);
callback.onResponse(response1, new LinkHeaders(), ApiType.CACHE);
}
Aggregations