[chore] Comment out silly, frequently-failing `GetStatusTwice` test (#2656)

* [chore] Comment out silly, frequently-failing `GetStatusTwice` test

* lord
This commit is contained in:
tobi 2024-02-18 11:04:02 +01:00 committed by GitHub
parent 40f9eefc21
commit b14cd645f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 9 additions and 1 deletions

View File

@ -19,7 +19,6 @@ package bundb_test
import (
"context"
"fmt"
"testing"
"time"
@ -144,6 +143,14 @@ func (suite *StatusTestSuite) TestGetStatusWithMention() {
suite.True(*status.Likeable)
}
// The below test was originally used to ensure that a second
// fetch is faster than a first fetch of a status, because in
// the second fetch it should be cached. However because we
// always run in-memory tests anyway, sometimes the first fetch
// is actually faster, which causes CI/CD to fail unpredictably.
// Since we know by now (Feb 2024) that the cache works fine,
// the test is commented out.
/*
func (suite *StatusTestSuite) TestGetStatusTwice() {
before1 := time.Now()
_, err := suite.db.GetStatusByURI(context.Background(), suite.testStatuses["local_account_1_status_1"].URI)
@ -162,6 +169,7 @@ func (suite *StatusTestSuite) TestGetStatusTwice() {
// second retrieval should be several orders faster since it will be cached now
suite.Less(duration2, duration1)
}
*/
func (suite *StatusTestSuite) TestGetStatusReplies() {
targetStatus := suite.testStatuses["local_account_1_status_1"]