Skip to main content
summaryrefslogtreecommitdiffstats
blob: 09a2403993a67d8f19687ac8192dca865d8dcf0b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/******************************************************************************
 *  Copyright (c) 2012 GitHub Inc.
 *  All rights reserved. This program and the accompanying materials
 *  are made available under the terms of the Eclipse Public License v1.0
 *  which accompanies this distribution, and is available at
 *  http://www.eclipse.org/legal/epl-v10.html
 *
 *  Contributors:
 *    Kevin Sawicki (GitHub Inc.) - initial API and implementation
 *****************************************************************************/
package org.eclipse.egit.github.core.tests;

import static org.eclipse.egit.github.core.client.IGitHubConstants.CHARSET_UTF8;
import static org.eclipse.egit.github.core.service.MarkdownService.MODE_MARKDOWN;
import static org.junit.Assert.assertEquals;
import static org.mockito.Matchers.any;
import static org.mockito.Mockito.doReturn;

import java.io.ByteArrayInputStream;
import java.io.IOException;

import org.eclipse.egit.github.core.RepositoryId;
import org.eclipse.egit.github.core.client.GitHubClient;
import org.eclipse.egit.github.core.service.MarkdownService;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
import org.mockito.runners.MockitoJUnitRunner;

/**
 * Unit tests of {@link MarkdownService}
 */
@RunWith(MockitoJUnitRunner.class)
public class MarkdownServiceTest {

	@Mock
	private GitHubClient client;

	private MarkdownService service;

	private RepositoryId repo;

	private String content;

	/**
	 * Test case set up
	 *
	 * @throws IOException
	 */
	@Before
	public void before() throws IOException {
		content = "<p>content</p>";
		ByteArrayInputStream stream = new ByteArrayInputStream(
				content.getBytes(CHARSET_UTF8));
		doReturn(stream).when(client).postStream(any(String.class),
				any(Object.class));
		service = new MarkdownService(client);
		repo = new RepositoryId("o", "n");
	}

	/**
	 * Get repository HTML
	 *
	 * @throws Exception
	 */
	@Test
	public void getRepositoryHtml() throws Exception {
		assertEquals(content, service.getRepositoryHtml(repo, "input"));
	}

	/**
	 * Get repository HTML
	 *
	 * @throws Exception
	 */
	@Test(expected = IllegalArgumentException.class)
	public void getRepositoryHtmlNullRepository() throws Exception {
		service.getRepositoryHtml(null, "input");
	}

	/**
	 * Get HTML
	 *
	 * @throws Exception
	 */
	@Test
	public void getHtml() throws Exception {
		assertEquals(content, service.getHtml("input", MODE_MARKDOWN));
	}
}

Back to the top