Archived
1
0
Fork 0
This repository has been archived on 2024-12-18. You can view files and clone it, but cannot push or open issues or pull requests.
restockbot/utils_test.go
Julien Riou 1f5cef17d2
Handle Twitter duplicates (#20)
This commit adds a hash attribute to help identify duplicate messages. Tweets
have a TweetID attribute for the initial thread identifier and a LastTweetID
attribute to keep track of the last reply to eventually continue the thread if a
duplicate is detected.

Signed-off-by: Julien Riou <julien@riou.xyz>
2021-04-15 15:13:00 +02:00

61 lines
2 KiB
Go

package main
import (
"fmt"
"testing"
)
func TestExtractShopName(t *testing.T) {
tests := []struct {
link string // url to parse
name string // expected name
}{
{"https://www.topachat.com/pages/produits_cat_est_micro_puis_rubrique_est_wgfx_pcie_puis_f_est_58-11733,11575,11447,11445,11446,10587,11796,11559,11558,11586.html", "topachat.com"},
{"https://www.ldlc.com/informatique/pieces-informatique/carte-graphique-interne/c4684/+fv121-17715,19183,19184,19185,19339,19340,19365,19367,19509,19674.html", "ldlc.com"},
{"https://www.cybertek.fr/carte-graphique-6.aspx?crits=3991%3a4236%3a4387%3a4237%3a4242%3a4289%3a4229%3a4144%3a4145%3a4146", "cybertek.fr"},
{"https://www.mediamarkt.ch/fr/category/_cartes-graphiques-751073.html", "mediamarkt.ch"},
{"https://www.steg-electronics.ch/fr/product/pool/nvidia-3060", "steg-electronics.ch"},
{"https://www.vsgamers.es/category/componentes/tarjetas-graficas?filter-modelo=rtxr-3060-1307", "vsgamers.es"},
}
for i, tc := range tests {
t.Run(fmt.Sprintf("TestExtractShopName#%d", i), func(t *testing.T) {
name, err := ExtractShopName(tc.link)
if err != nil {
t.Errorf("for %s: got %s, want %s", tc.link, err, tc.name)
} else if name != tc.name {
t.Errorf("for %s: got %s, want %s", tc.link, name, tc.name)
} else {
t.Logf("for %s: got %s, want %s", tc.link, name, tc.name)
}
})
}
}
func TestCoalesceInt64(t *testing.T) {
tests := []struct {
arguments []int64
expected int64
}{
// single value
{[]int64{0}, 0},
{[]int64{99}, 99},
// multiple values
{[]int64{0, 0}, 0},
{[]int64{0, 99}, 99},
{[]int64{99, 0}, 99},
{[]int64{99, 99}, 99},
}
for i, tc := range tests {
t.Run(fmt.Sprintf("TestExtractShopName#%d", i), func(t *testing.T) {
result := CoalesceInt64(tc.arguments...)
if result != tc.expected {
t.Errorf("for %+v: got %d, want %d", tc.arguments, result, tc.expected)
} else {
t.Logf("for %+v: got %d, want %d", tc.arguments, result, tc.expected)
}
})
}
}