rss2twitter/app/rss/notify_test.go
2018-12-04 23:40:31 -06:00

48 lines
1 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package rss
import (
"context"
"fmt"
"io/ioutil"
"net/http"
"net/http/httptest"
"sync/atomic"
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestNotify(t *testing.T) {
var n int32
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
fnum := atomic.AddInt32(&n, int32(1))
if fnum > 2 {
fnum = 2
}
data, err := ioutil.ReadFile(fmt.Sprintf("testdata/f%d.xml", fnum))
require.NoError(t, err)
w.WriteHeader(200)
w.Write(data)
}))
defer ts.Close()
notify := New(context.Background(), ts.URL, time.Millisecond*250)
ch := notify.Go()
defer notify.Shutdown()
st := time.Now()
e := <-ch
t.Logf("%+v", e)
assert.Equal(t, Event{ChanTitle: "Радио-Т", Title: "Радио-Т 626",
Link: "https://radio-t.com/p/2018/12/01/podcast-626/", guid: "https://radio-t.com/p/2018/12/01//podcast-626/"}, e)
assert.True(t, time.Since(st) >= time.Millisecond*250)
select {
case <-ch:
t.Fatal("should not get any more")
default:
}
}