Package sagan.guides.support

Source Code of sagan.guides.support.UnderstandingDocMapperTests

package sagan.guides.support;

import sagan.guides.UnderstandingDoc;
import sagan.search.SearchEntry;
import sagan.support.Fixtures;

import java.util.Date;

import org.hamcrest.core.IsEqual;
import org.junit.Test;

import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.*;

/**
* Unit tests for {@link UnderstandingDocMapper}.
*/
public class UnderstandingDocMapperTests {

    private final UnderstandingDocMapper mapper = new UnderstandingDocMapper();
    private final UnderstandingDoc doc = new UnderstandingDoc("foo", udoc -> {
        udoc.setContent("<h1>Understanding: foo</h1><p>content</p>");
        udoc.setSidebar("<p>sidebar</p>");
    });
    private final SearchEntry entry = mapper.map(doc);

    @Test
    public void publishAtDateDefaultsTo0() throws Exception {
        assertThat(entry.getPublishAt(), equalTo(new Date(0L)));
    }

    @Test
    public void titleIsSubject() throws Exception {
        assertThat(entry.getTitle(), equalTo("foo"));
    }

    @Test
    public void rawContentDoesNotHaveAnyHtml() throws Exception {
        assertThat(entry.getRawContent(), equalTo("Understanding: foo content"));
    }

    @Test
    public void facetTypeIsUnderstanding() throws Exception {
        assertThat(entry.getFacetPaths(), containsInAnyOrder("Guides", "Guides/Understanding"));
    }

    @Test
    public void summaryIsFirst500Characters() throws Exception {
        String content = Fixtures.load("/fixtures/understanding/amqp/README.html");
        UnderstandingDoc guide = new UnderstandingDoc("foo", content, "sidebar");
        SearchEntry entry = mapper.map(guide);
        assertThat(entry.getSummary().length(), equalTo(500));
    }

    @Test
    public void summaryIsWholeContentIfLessThan500Characters() throws Exception {
        assertThat(entry.getSummary(), equalTo("Understanding: foo content"));
    }

    @Test
    public void hasPath() throws Exception {
        assertThat(entry.getPath(), equalTo("understanding/foo"));
    }

    @Test
    public void mapsSubTitle() throws Exception {
        assertThat(entry.getSubTitle(), IsEqual.equalTo("Understanding Doc"));
    }
}
TOP

Related Classes of sagan.guides.support.UnderstandingDocMapperTests

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.