aboutsummaryrefslogtreecommitdiffstats
path: root/vespaclient-container-plugin/src/test/java/com/yahoo/vespa/http/server/FeedReaderFactoryTestCase.java
blob: 08a7e82a158bd064b8ab2ce19eea3927395aec6d (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.http.server;

import com.yahoo.document.DocumentTypeManager;
import com.yahoo.text.Utf8;
import org.junit.Test;

import java.io.ByteArrayInputStream;
import java.io.InputStream;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.fail;

public class FeedReaderFactoryTestCase {
    DocumentTypeManager manager = new DocumentTypeManager();

    private InputStream createStream(String s) {
        return new ByteArrayInputStream(Utf8.toBytes(s));
    }

    @Test
    public void testXmlExceptionWithDebug() {
        try {
            new FeedReaderFactory(true).createReader(createStream("Some malformed xml"), manager, FeedParams.DataFormat.XML_UTF8);
            fail();
        } catch (RuntimeException e) {
            assertEquals("Could not create VespaXMLFeedReader. First characters are: 'Some malformed xml'", e.getMessage());
        }
    }
    @Test
    public void testXmlException() {
        try {
            new FeedReaderFactory(false).createReader(createStream("Some malformed xml"), manager, FeedParams.DataFormat.XML_UTF8);
            fail();
        } catch (RuntimeException e) {
            assertEquals("Could not create VespaXMLFeedReader.", e.getMessage());
        }
    }
}