-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Adding unit tests for custom Webui URL (#74)
* Adding unit tests for custom Webui URL Signed-off-by: gatici <[email protected]> * Update udr_config_with_custom_webui_url.yaml --------- Signed-off-by: gatici <[email protected]> Co-authored-by: gab-arrobo <[email protected]>
- Loading branch information
1 parent
30464b7
commit 73767dc
Showing
4 changed files
with
56 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// SPDX-FileCopyrightText: 2024 Canonical Ltd. | ||
/* | ||
* Tests for UDR Configuration Factory | ||
*/ | ||
|
||
package factory | ||
|
||
import ( | ||
"fmt" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
// Webui URL is not set then default Webui URL value is returned | ||
func TestGetDefaultWebuiUrl(t *testing.T) { | ||
if err := InitConfigFactory("config.example.yaml"); err != nil { | ||
fmt.Printf("Error in InitConfigFactory: %v\n", err) | ||
} | ||
got := UdrConfig.Configuration.WebuiUri | ||
want := "webui:9876" | ||
assert.Equal(t, got, want, "The webui URL is not correct.") | ||
} | ||
|
||
// Webui URL is set to a custom value then custom Webui URL is returned | ||
func TestGetCustomWebuiUrl(t *testing.T) { | ||
if err := InitConfigFactory("udr_config_with_custom_webui_url.yaml"); err != nil { | ||
fmt.Printf("Error in InitConfigFactory: %v\n", err) | ||
} | ||
got := UdrConfig.Configuration.WebuiUri | ||
want := "myspecialwebui:9872" | ||
assert.Equal(t, got, want, "The webui URL is not correct.") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# SPDX-FileCopyrightText: 2024 Canonical Ltd. | ||
|
||
info: | ||
version: 1.0.0 | ||
description: UDR initial local configuration | ||
|
||
configuration: | ||
webuiUri: myspecialwebui:9872 # a valid URI of Webui | ||
sbi: # Service Based Interface | ||
scheme: https | ||
registerIPv4: 127.0.0.4 | ||
bindingIPv4: 0.0.0.0 | ||
port: 8000 | ||
mongodb: | ||
name: free5gc | ||
url: http://dummy | ||
authKeysDbName: authentication | ||
authUrl: http://dummy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters