add primary_domain_dode

maybe fix #211
This commit is contained in:
genofire 2022-04-14 00:38:00 +02:00
parent 8cc5fe1f01
commit 1dbd52c5cd
4 changed files with 16 additions and 9 deletions

View File

@ -46,6 +46,7 @@ type Owner struct {
type System struct {
SiteCode string `json:"site_code,omitempty"`
DomainCode string `json:"domain_code,omitempty"`
PrimaryDomainCode string `json:"primary_domain_code,omitempty"`
}
// Location struct

View File

@ -39,13 +39,13 @@ func TestStart(t *testing.T) {
},
"b": nil,
"c": []map[string]interface{}{
map[string]interface{}{
{
"path": "c1",
},
},
// fetch continue command in Connect
"d": []map[string]interface{}{
map[string]interface{}{
{
"path": "d0",
},
},

View File

@ -50,28 +50,28 @@ func TestStart(t *testing.T) {
})
allOutput, err := Register(map[string]interface{}{
"a": []map[string]interface{}{
map[string]interface{}{
{
"enable": false,
"path": "a1",
},
map[string]interface{}{
{
"path": "a2",
},
map[string]interface{}{
{
"enable": true,
"path": "a3",
},
},
"b": nil,
"c": []map[string]interface{}{
map[string]interface{}{
{
"path": "c1",
"filter": map[string]interface{}{},
},
},
// fetch continue command in Connect
"d": []map[string]interface{}{
map[string]interface{}{
{
"path": "d0",
},
},

View File

@ -3,9 +3,15 @@ package inarea
import (
"testing"
<<<<<<< HEAD
"github.com/FreifunkBremen/yanic/data"
"github.com/FreifunkBremen/yanic/runtime"
"github.com/stretchr/testify/assert"
=======
"github.com/stretchr/testify/assert"
"yanic/data"
"yanic/runtime"
>>>>>>> 64b9cfe (add primary_domain_dode)
)
func TestFilterInArea(t *testing.T) {