Moved TLD stuff to utils (since it's not explicitly using DNS), but is a utility for understanding/parsing DNS info
parent
797e5c6112
commit
78974edf2b
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,47 @@
|
||||
/*
|
||||
* Copyright 2021 dorkbox, llc
|
||||
* Copyright (C) 2014 ZeroTurnaround <support@zeroturnaround.com>
|
||||
* Contains fragments of code from Apache Commons Exec, rights owned
|
||||
* by Apache Software Foundation (ASF).
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package dorkbox.netUtil
|
||||
|
||||
import org.junit.Assert
|
||||
import org.junit.Test
|
||||
|
||||
class TopLevelDomainTest {
|
||||
@Test
|
||||
fun isTLD() {
|
||||
Assert.assertFalse(Dns.isTLD("www.espn.com"))
|
||||
Assert.assertFalse(Dns.isTLD("espn.com"))
|
||||
Assert.assertTrue(Dns.isTLD("com"))
|
||||
Assert.assertTrue(Dns.isTLD("co.uk"))
|
||||
}
|
||||
|
||||
@Test
|
||||
fun withoutTLD() {
|
||||
Assert.assertEquals("espn", Dns.withoutTLD("espn.com"))
|
||||
Assert.assertEquals("www.espn", Dns.withoutTLD("www.espn.com"))
|
||||
Assert.assertEquals("a.b.c.www.espn", Dns.withoutTLD("a.b.c.www.espn.com"))
|
||||
}
|
||||
|
||||
@Test
|
||||
fun extractSLD() {
|
||||
Assert.assertEquals("espn.com", Dns.extractSLD("espn.com"))
|
||||
Assert.assertEquals("espn.com", Dns.extractSLD("www.espn.com"))
|
||||
Assert.assertEquals("espn.com", Dns.extractSLD("a.b.c.www.espn.com"))
|
||||
}
|
||||
}
|
Loading…
Reference in new issue