mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-07 16:54:16 +01:00
7ebe58f20a
* Add DNS list argument for mobile client * Write testable code Many places are checked the wgInterface != nil condition. It is doing it just because to avoid the real wgInterface creation for tests. Instead of this involve a wgInterface interface what is moc-able. * Refactor the DNS server internal code structure With the fake resolver has been involved several if-else statement and generated some unused variables to distinguish the listener and fake resolver solutions at running time. With this commit the fake resolver and listener based solution has been moved into two separated structure. Name of this layer is the 'service'. With this modification the unit test looks simpler and open the option to add new logic for the permanent DNS service usage for mobile systems. * Remove is running check in test We can not ensure the state well so remove this check. The test will fail if the server is not running well.
27 lines
542 B
Go
27 lines
542 B
Go
package android
|
|
|
|
import "fmt"
|
|
|
|
// DNSList is a wrapper of []string
|
|
type DNSList struct {
|
|
items []string
|
|
}
|
|
|
|
// Add new DNS address to the collection
|
|
func (array *DNSList) Add(s string) {
|
|
array.items = append(array.items, s)
|
|
}
|
|
|
|
// Get return an element of the collection
|
|
func (array *DNSList) Get(i int) (string, error) {
|
|
if i >= len(array.items) || i < 0 {
|
|
return "", fmt.Errorf("out of range")
|
|
}
|
|
return array.items[i], nil
|
|
}
|
|
|
|
// Size return with the size of the collection
|
|
func (array *DNSList) Size() int {
|
|
return len(array.items)
|
|
}
|