mirror of
https://github.com/strukturag/nextcloud-spreed-signaling
synced 2026-03-14 14:35:44 +01:00
107 lines
3.1 KiB
Go
107 lines
3.1 KiB
Go
/**
|
|
* Standalone signaling server for the Nextcloud Spreed app.
|
|
* Copyright (C) 2023 struktur AG
|
|
*
|
|
* @author Joachim Bauch <bauch@struktur.de>
|
|
*
|
|
* @license GNU AGPL version 3 or any later version
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero 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 Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package signaling
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/dlintw/goconf"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/strukturag/nextcloud-spreed-signaling/etcd/etcdtest"
|
|
"github.com/strukturag/nextcloud-spreed-signaling/log"
|
|
)
|
|
|
|
type TestProxyInformationEtcd struct {
|
|
Address string `json:"address"`
|
|
|
|
OtherData string `json:"otherdata,omitempty"`
|
|
}
|
|
|
|
func newProxyConfigEtcd(t *testing.T, proxy McuProxy) (*etcdtest.TestServer, ProxyConfig) {
|
|
t.Helper()
|
|
embedEtcd, client := etcdtest.NewClientForTest(t)
|
|
cfg := goconf.NewConfigFile()
|
|
cfg.AddOption("mcu", "keyprefix", "proxies/")
|
|
logger := log.NewLoggerForTest(t)
|
|
p, err := NewProxyConfigEtcd(logger, cfg, client, proxy)
|
|
require.NoError(t, err)
|
|
t.Cleanup(func() {
|
|
p.Stop()
|
|
})
|
|
return embedEtcd, p
|
|
}
|
|
|
|
func SetEtcdProxy(t *testing.T, server *etcdtest.TestServer, path string, proxy *TestProxyInformationEtcd) {
|
|
t.Helper()
|
|
data, _ := json.Marshal(proxy)
|
|
server.SetValue(path, data)
|
|
}
|
|
|
|
func TestProxyConfigEtcd(t *testing.T) {
|
|
t.Parallel()
|
|
proxy := newMcuProxyForConfig(t)
|
|
embedEtcd, config := newProxyConfigEtcd(t, proxy)
|
|
|
|
ctx, cancel := context.WithTimeout(t.Context(), time.Second)
|
|
defer cancel()
|
|
|
|
SetEtcdProxy(t, embedEtcd, "proxies/a", &TestProxyInformationEtcd{
|
|
Address: "https://foo/",
|
|
})
|
|
proxy.Expect("add", "https://foo/")
|
|
require.NoError(t, config.Start())
|
|
proxy.WaitForEvents(ctx)
|
|
|
|
proxy.Expect("add", "https://bar/")
|
|
SetEtcdProxy(t, embedEtcd, "proxies/b", &TestProxyInformationEtcd{
|
|
Address: "https://bar/",
|
|
})
|
|
proxy.WaitForEvents(ctx)
|
|
|
|
proxy.Expect("keep", "https://bar/")
|
|
SetEtcdProxy(t, embedEtcd, "proxies/b", &TestProxyInformationEtcd{
|
|
Address: "https://bar/",
|
|
OtherData: "ignore-me",
|
|
})
|
|
proxy.WaitForEvents(ctx)
|
|
|
|
proxy.Expect("remove", "https://foo/")
|
|
embedEtcd.DeleteValue("proxies/a")
|
|
proxy.WaitForEvents(ctx)
|
|
|
|
proxy.Expect("remove", "https://bar/")
|
|
proxy.Expect("add", "https://baz/")
|
|
SetEtcdProxy(t, embedEtcd, "proxies/b", &TestProxyInformationEtcd{
|
|
Address: "https://baz/",
|
|
})
|
|
proxy.WaitForEvents(ctx)
|
|
|
|
// Adding the same hostname multiple times should not trigger an event.
|
|
SetEtcdProxy(t, embedEtcd, "proxies/c", &TestProxyInformationEtcd{
|
|
Address: "https://baz/",
|
|
})
|
|
time.Sleep(100 * time.Millisecond)
|
|
}
|