Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ef7932858a579a70fca331d99a6dec648e1e239d (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
/*******************************************************************************
 * Copyright (c) 2013 Stefan Seelmann and others.
 * 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:
 *     Stefan Seelmann - initial API and implementation
 *******************************************************************************/

package org.eclipse.mylyn.internal.wikitext.markdown.tests;

import java.util.List;

import junit.framework.TestCase;

import org.eclipse.mylyn.internal.wikitext.markdown.core.validation.MarkdownReferenceValidationRule;
import org.eclipse.mylyn.wikitext.core.validation.MarkupValidator;
import org.eclipse.mylyn.wikitext.core.validation.ValidationProblem;
import org.eclipse.mylyn.wikitext.core.validation.ValidationProblem.Severity;
import org.eclipse.mylyn.wikitext.tests.TestUtil;

public class MarkdownReferenceValidationRuleTest extends TestCase {

	private MarkdownReferenceValidationRule rule;

	private MarkupValidator validator;

	@Override
	protected void setUp() throws Exception {
		super.setUp();
		rule = new MarkdownReferenceValidationRule();
		validator = new MarkupValidator();
		validator.getRules().add(rule);
	}

	public void testNoErrorInLocalReferenceToExistingAnchor() {
		final String markup = "# Header 1\n\n[Link to title](#Header1)";
		List<ValidationProblem> problems = rule.findProblems(markup, 0, markup.length());
		TestUtil.println(problems);
		assertNotNull(problems);
		assertTrue(problems.isEmpty());
	}

	public void testErrorInLocalReferenceToNonExistingAnchor() {
		final String markup = "# Header 1\n\n[Link to title](#FooBar)";
		List<ValidationProblem> problems = rule.findProblems(markup, 0, markup.length());
		TestUtil.println(problems);
		assertNotNull(problems);
		assertEquals(1, problems.size());
		assertEquals(12, problems.get(0).getOffset());
		assertEquals(24, problems.get(0).getLength());
		assertEquals(Severity.ERROR, problems.get(0).getSeverity());
		assertTrue(problems.get(0).getMessage().contains("FooBar"));
	}

}

Back to the top