Merge pull request #88 from dendd1/master

left-hand side currencies
This commit is contained in:
Pavel 2025-02-06 13:23:25 +03:00 committed by GitHub
commit aac4a1a953
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 28 additions and 0 deletions

View file

@ -10,6 +10,7 @@ import (
"io"
"net/http"
"regexp"
"slices"
"strings"
"sync/atomic"
"time"
@ -45,6 +46,8 @@ var (
}
)
var lHSCurrencies = []string{"pen"}
var defaultCurrencies = map[string]string{
"rub": "₽",
"uah": "₴",
@ -271,6 +274,11 @@ func DefaultCurrencies() map[string]string {
return defaultCurrencies
}
// LHSCurrencies will return left-hand side currencies.
func LHSCurrencies() []string {
return lHSCurrencies
}
// GetCurrencySymbol returns currency symbol by it's ISO 4127 code.
// It returns provided currency code in uppercase if currency symbol cannot be found.
func GetCurrencySymbol(code string) string {
@ -281,6 +289,12 @@ func GetCurrencySymbol(code string) string {
return strings.ToUpper(code)
}
// IsLHSCurrency determines whether the currency is left-hand side.
// It returns false if currency symbol cannot be found.
func IsLHSCurrency(code string) bool {
return slices.Contains(LHSCurrencies(), strings.ToLower(code))
}
func FormatCurrencyValue(value float32) string {
return fmt.Sprintf("%.2f", value)
}

View file

@ -4,6 +4,7 @@ import (
"encoding/json"
"errors"
"net/http"
"slices"
"strings"
"testing"
"time"
@ -320,6 +321,19 @@ func TestUtils_GetCurrencySymbol(t *testing.T) {
assert.Equal(t, "MXN", GetCurrencySymbol("mxn"))
}
func TestUtils_IsLHSCurrency(t *testing.T) {
for code := range DefaultCurrencies() {
if slices.Contains(LHSCurrencies(), strings.ToLower(code)) {
assert.True(t, IsLHSCurrency(code))
continue
}
assert.False(t, IsLHSCurrency(code))
}
assert.False(t, IsLHSCurrency("extra_code"))
}
func TestUtils_ReplaceMarkdownSymbols(t *testing.T) {
test := "this *is* _test_ `string` [markdown"
expected := "this \\*is\\* \\_test\\_ \\`string\\` \\[markdown"