mirror of
https://github.com/etesync/android
synced 2024-12-04 13:58:52 +00:00
28e567cf78
* split tests into Android tests and local unit tests * LoginCredentialsFragment: check for empty host before doing IDN conversion
27 lines
891 B
Java
27 lines
891 B
Java
/*
|
||
* Copyright © 2013 – 2016 Ricki Hirner (bitfire web engineering).
|
||
* All rights reserved. This program and the accompanying materials
|
||
* are made available under the terms of the GNU Public License v3.0
|
||
* which accompanies this distribution, and is available at
|
||
* http://www.gnu.org/licenses/gpl.html
|
||
*/
|
||
|
||
package at.bitfire.davdroid;
|
||
|
||
import org.junit.Assert;
|
||
import org.junit.Test;
|
||
|
||
public class TestDavUtils {
|
||
|
||
private static final String exampleURL = "http://example.com/";
|
||
|
||
@Test
|
||
public void testLastSegmentOfUrl() {
|
||
Assert.assertEquals("/", DavUtils.lastSegmentOfUrl(exampleURL));
|
||
Assert.assertEquals("dir", DavUtils.lastSegmentOfUrl(exampleURL + "dir"));
|
||
Assert.assertEquals("dir", DavUtils.lastSegmentOfUrl(exampleURL + "dir/"));
|
||
Assert.assertEquals("file.html", DavUtils.lastSegmentOfUrl(exampleURL + "dir/file.html"));
|
||
}
|
||
|
||
}
|