Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 45adcdfe3bd9d1c3c82ed9a15f466e1c712953e9 (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
//
//  ========================================================================
//  Copyright (c) 1995-2012 Mort Bay Consulting Pty. Ltd.
//  ------------------------------------------------------------------------
//  All rights reserved. This program and the accompanying materials
//  are made available under the terms of the Eclipse Public License v1.0
//  and Apache License v2.0 which accompanies this distribution.
//
//      The Eclipse Public License is available at
//      http://www.eclipse.org/legal/epl-v10.html
//
//      The Apache License v2.0 is available at
//      http://www.opensource.org/licenses/apache2.0.php
//
//  You may elect to redistribute this code under either of these licenses.
//  ========================================================================
//

package org.eclipse.jetty.plugins.util;

import java.io.IOException;
import java.util.List;

import org.junit.Test;

import static org.hamcrest.Matchers.greaterThan;
import static org.hamcrest.Matchers.is;
import static org.junit.Assert.assertThat;

public class RepositoryParserTest
{
    @Test
    public void testParseLinksInDirectoryListing() throws IOException
    {
        String listing = StreamUtils.inputStreamToString(this.getClass().getClassLoader().getResourceAsStream("mavenRepoJettyDirectoryListing.html"));
        List<String> modules = RepositoryParser.parseLinksInDirectoryListing(listing);
        assertThat("At least ten jetty modules expected", modules.size(), greaterThan(10));
        assertThat("jetty-jmx module expected", modules.contains("jetty-jmx"), is(true));
    }

    @Test
    public void testIsPlugin() throws IOException
    {
        String listing = StreamUtils.inputStreamToString(this.getClass().getClassLoader().getResourceAsStream("mavenRepoJettyJMXDirectoryListing.html"));
        assertThat("listing describes a plugin", RepositoryParser.isModuleAPlugin(listing), is(true));
        String nonPluginListing = StreamUtils.inputStreamToString(this.getClass().getClassLoader().getResourceAsStream("mavenRepoJettyJNDIDirectoryListing.html"));
        assertThat("listing doesn't describe a plugin", RepositoryParser.isModuleAPlugin(nonPluginListing), is(false));
    }
}

Back to the top