kopia lustrzana https://github.com/meshtastic/Meshtastic-Android
78 wiersze
2.7 KiB
Kotlin
78 wiersze
2.7 KiB
Kotlin
/*
|
|
* Copyright (c) 2025 Meshtastic LLC
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package com.geeksville.mesh
|
|
|
|
import android.net.Uri
|
|
import dagger.hilt.android.testing.HiltAndroidRule
|
|
import dagger.hilt.android.testing.HiltAndroidTest
|
|
import org.junit.Assert
|
|
import org.junit.Before
|
|
import org.junit.Rule
|
|
import org.junit.Test
|
|
import org.meshtastic.core.model.util.getChannelUrl
|
|
import org.meshtastic.core.model.util.primaryChannel
|
|
import org.meshtastic.core.model.util.toChannelSet
|
|
|
|
@HiltAndroidTest
|
|
class ChannelSetTest {
|
|
|
|
@get:Rule var hiltRule = HiltAndroidRule(this)
|
|
|
|
@Before
|
|
fun init() {
|
|
hiltRule.inject()
|
|
}
|
|
|
|
/** make sure we match the python and device code behavior */
|
|
@Test
|
|
fun matchPython() {
|
|
val url = Uri.parse("https://meshtastic.org/e/#CgMSAQESBggBQANIAQ")
|
|
val cs = url.toChannelSet()
|
|
Assert.assertEquals("LongFast", cs.primaryChannel!!.name)
|
|
Assert.assertEquals(url, cs.getChannelUrl(false))
|
|
}
|
|
|
|
/** validate against the host or path in a case-insensitive way */
|
|
@Test
|
|
fun parseCaseInsensitive() {
|
|
var url = Uri.parse("HTTPS://MESHTASTIC.ORG/E/#CgMSAQESBggBQANIAQ")
|
|
Assert.assertEquals("LongFast", url.toChannelSet().primaryChannel!!.name)
|
|
|
|
url = Uri.parse("HTTPS://mEsHtAsTiC.OrG/e/#CgMSAQESBggBQANIAQ")
|
|
Assert.assertEquals("LongFast", url.toChannelSet().primaryChannel!!.name)
|
|
}
|
|
|
|
/** properly parse channel config when `?add=true` is in the fragment */
|
|
@Test
|
|
fun handleAddInFragment() {
|
|
val url = Uri.parse("https://meshtastic.org/e/#CgMSAQESBggBQANIAQ?add=true")
|
|
val cs = url.toChannelSet()
|
|
Assert.assertEquals("Custom", cs.primaryChannel!!.name)
|
|
Assert.assertFalse(cs.hasLoraConfig())
|
|
}
|
|
|
|
/** properly parse channel config when `?add=true` is in the query parameters */
|
|
@Test
|
|
fun handleAddInQueryParams() {
|
|
val url = Uri.parse("https://meshtastic.org/e/?add=true#CgMSAQESBggBQANIAQ")
|
|
val cs = url.toChannelSet()
|
|
Assert.assertEquals("Custom", cs.primaryChannel!!.name)
|
|
Assert.assertFalse(cs.hasLoraConfig())
|
|
}
|
|
}
|