Fix sqlite test

This commit is contained in:
braginini
2022-12-27 13:54:55 +01:00
parent 86f731a76b
commit ad2ac7a383

View File

@@ -1,27 +1,29 @@
package activity
import (
"fmt"
"github.com/stretchr/testify/assert"
"testing"
"time"
)
func TestNewSQLiteStore(t *testing.T) {
//dataDir := t.TempDir()
store, err := NewSQLiteStore("/home/braginini/wiretrustee/test/")
dataDir := t.TempDir()
store, err := NewSQLiteStore(dataDir)
if err != nil {
t.Fatal(err)
return
}
//accountID := "account_1"
accountID := "account_1"
for i := 0; i < 10000; i++ {
for i := 0; i < 10; i++ {
_, err = store.Save(&Event{
Timestamp: time.Now().Add(-1 * time.Minute),
Timestamp: time.Now(),
Activity: PeerAddedByUser,
InitiatorID: "google-oauth2|110866222733584764488",
TargetID: "100.101.249.29",
AccountID: "cebi9h3lo1hkhn1qc7cg",
InitiatorID: "user_" + fmt.Sprint(i),
TargetID: "peer_" + fmt.Sprint(i),
AccountID: accountID,
})
if err != nil {
t.Fatal(err)
@@ -29,7 +31,7 @@ func TestNewSQLiteStore(t *testing.T) {
}
}
/*result, err := store.Get(accountID, 0, 10, false)
result, err := store.Get(accountID, 0, 10, false)
if err != nil {
t.Fatal(err)
return
@@ -45,5 +47,5 @@ func TestNewSQLiteStore(t *testing.T) {
}
assert.Len(t, result, 5)
assert.True(t, result[0].Timestamp.After(result[len(result)-1].Timestamp))*/
assert.True(t, result[0].Timestamp.After(result[len(result)-1].Timestamp))
}