diff options
author | 2023-05-25 10:37:38 +0200 | |
---|---|---|
committer | 2023-05-25 10:37:38 +0200 | |
commit | f5c004d67d4ed66b6c6df100afec47174aa14ae0 (patch) | |
tree | 45b72a6e90450d711e10571d844138186fe023c9 /testrig/testmodels.go | |
parent | [docs] local docs hacking howto (#1816) (diff) | |
download | gotosocial-f5c004d67d4ed66b6c6df100afec47174aa14ae0.tar.xz |
[feature] Add List functionality (#1802)
* start working on lists
* further list work
* test list db functions nicely
* more work on lists
* peepoopeepoo
* poke
* start list timeline func
* we're getting there lads
* couldn't be me working on stuff... could it?
* hook up handlers
* fiddling
* weeee
* woah
* screaming, pissing
* fix streaming being a whiny baby
* lint, small test fix, swagger
* tidying up, testing
* fucked! by the linter
* move timelines to state like a boss
* add timeline start to tests using state
* invalidate lists
Diffstat (limited to 'testrig/testmodels.go')
-rw-r--r-- | testrig/testmodels.go | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/testrig/testmodels.go b/testrig/testmodels.go index 15e204f85..c55b80e60 100644 --- a/testrig/testmodels.go +++ b/testrig/testmodels.go @@ -1961,6 +1961,38 @@ func NewTestFollows() map[string]*gtsmodel.Follow { } } +func NewTestLists() map[string]*gtsmodel.List { + return map[string]*gtsmodel.List{ + "local_account_1_list_1": { + ID: "01H0G8E4Q2J3FE3JDWJVWEDCD1", + CreatedAt: TimeMustParse("2022-05-14T13:21:09+02:00"), + UpdatedAt: TimeMustParse("2022-05-14T13:21:09+02:00"), + Title: "Cool Ass Posters From This Instance", + AccountID: "01F8MH1H7YV1Z7D2C8K2730QBF", + RepliesPolicy: gtsmodel.RepliesPolicyFollowed, + }, + } +} + +func NewTestListEntries() map[string]*gtsmodel.ListEntry { + return map[string]*gtsmodel.ListEntry{ + "local_account_1_list_1_entry_1": { + ID: "01H0G89MWVQE0M58VD2HQYMQWH", + CreatedAt: TimeMustParse("2022-05-14T13:21:09+02:00"), + UpdatedAt: TimeMustParse("2022-05-14T13:21:09+02:00"), + ListID: "01H0G8E4Q2J3FE3JDWJVWEDCD1", + FollowID: "01F8PYDCE8XE23GRE5DPZJDZDP", + }, + "local_account_1_list_1_entry_2": { + ID: "01H0G8FFM1AGQDRNGBGGX8CYJQ", + CreatedAt: TimeMustParse("2022-05-14T13:21:09+02:00"), + UpdatedAt: TimeMustParse("2022-05-14T13:21:09+02:00"), + ListID: "01H0G8E4Q2J3FE3JDWJVWEDCD1", + FollowID: "01F8PY8RHWRQZV038T4E8T9YK8", + }, + } +} + func NewTestBlocks() map[string]*gtsmodel.Block { return map[string]*gtsmodel.Block{ "local_account_2_block_remote_account_1": { |