001package org.eclipse.aether.spi.connector.layout;
002
003/*
004 * Licensed to the Apache Software Foundation (ASF) under one
005 * or more contributor license agreements.  See the NOTICE file
006 * distributed with this work for additional information
007 * regarding copyright ownership.  The ASF licenses this file
008 * to you under the Apache License, Version 2.0 (the
009 * "License"); you may not use this file except in compliance
010 * with the License.  You may obtain a copy of the License at
011 *
012 *  http://www.apache.org/licenses/LICENSE-2.0
013 *
014 * Unless required by applicable law or agreed to in writing,
015 * software distributed under the License is distributed on an
016 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
017 * KIND, either express or implied.  See the License for the
018 * specific language governing permissions and limitations
019 * under the License.
020 */
021
022import static org.junit.Assert.*;
023
024import java.net.URI;
025
026import org.junit.Test;
027
028import org.eclipse.aether.spi.connector.layout.RepositoryLayout.Checksum;
029
030public class ChecksumTest
031{
032
033    @Test
034    public void testForLocation()
035    {
036        Checksum cs = Checksum.forLocation( URI.create( "dir/sub%20dir/file.txt" ), "SHA-512" );
037        assertEquals( "SHA-512", cs.getAlgorithm() );
038        assertEquals( "dir/sub%20dir/file.txt.sha512", cs.getLocation().toString() );
039
040        cs = Checksum.forLocation( URI.create( "dir/sub%20dir/file.txt" ), "SHA-256" );
041        assertEquals( "SHA-256", cs.getAlgorithm() );
042        assertEquals( "dir/sub%20dir/file.txt.sha256", cs.getLocation().toString() );
043
044        cs = Checksum.forLocation( URI.create( "dir/sub%20dir/file.txt" ), "SHA-1" );
045        assertEquals( "SHA-1", cs.getAlgorithm() );
046        assertEquals( "dir/sub%20dir/file.txt.sha1", cs.getLocation().toString() );
047
048        cs = Checksum.forLocation( URI.create( "dir/sub%20dir/file.txt" ), "MD5" );
049        assertEquals( "MD5", cs.getAlgorithm() );
050        assertEquals( "dir/sub%20dir/file.txt.md5", cs.getLocation().toString() );
051    }
052
053    @Test( expected = IllegalArgumentException.class )
054    public void testForLocation_WithQueryParams()
055    {
056        Checksum.forLocation( URI.create( "file.php?param=1" ), "SHA-1" );
057    }
058
059    @Test( expected = IllegalArgumentException.class )
060    public void testForLocation_WithFragment()
061    {
062        Checksum.forLocation( URI.create( "file.html#fragment" ), "SHA-1" );
063    }
064
065}