summaryrefslogtreecommitdiffstats
path: root/ui/src/api_tests
AgeCommit message (Collapse)Author
2020-07-01Federation async (#848)Riley
* Asyncify more * I guess these changed * Clean PR a bit * Convert more away from failure error * config changes for testing federation * It was DNS So actix-web's client relies on TRust DNS Resolver to figure out where to send data, but TRust DNS Resolver seems to not play nice with docker, which expressed itself as not resolving the name to an IP address _the first time_ when making a request. The fix was literally to make the request again (which I limited to 3 times total, and not exceeding the request timeout in total) * Only retry for connecterror Since TRust DNS Resolver was causing ConnectError::Timeout, this change limits the retry to only this error, returning immediately for any other error * Use http sig norm 0.4.0-alpha for actix-web 3.0 support * Blocking function, retry http requests * cargo +nightly fmt * Only create one pictrs dir * Don't yarn build * cargo +nightly fmt
2020-06-11Parse out in reply to field. Fixes #694 (#799)Dessalines
- When a comment or post doesn't exist locally, yet we receive an activitypub with it (for example, a nested comment update, for a community we just subscribed to, also with a post we don't have...), then fetch it.
2020-06-03Adding additional 3-instance integration test for community announce.Dessalines
2020-05-15Federated mentions. Fixes #681 (#717)Dessalines
* Federated mentions. Fixes #681 * Changing some todos, adding comments.
2020-05-14Comment search and apub endpointFelix
2020-05-05Federated private messages.Dessalines
2020-05-03Adding undo follow community.Dessalines
2020-05-03Add federated comment and post undo like.Dessalines
2020-05-03Merge branch 'federation' into federated_remove_actionsDessalines
2020-05-03Adding federated mod remove actions.Dessalines
2020-05-01Add undos for delete community, post, and comment.Dessalines
2020-05-01Adding federated community, comment, and post deletes.Dessalines
- Unit tests added too. - No undeletes working yet.
2020-04-30Changing federated community and user links and searching.Dessalines
- Search: !community@instance, @user@instance - Representation: community@instance, user@instance
2020-04-29Adding shorthand federated object searching.Dessalines
2020-04-28Merge branch 'federation' into add_federated_post_likesDessalines
2020-04-28Removing some comments.Dessalines
2020-04-28Adding federated post and comment likes.Dessalines
2020-04-27Lots of additions to federation.Dessalines
- Added a shared inbox. - Added federated comments, comment updates, and tests. - Abstracted ap object sends into a common trait.
2020-04-24Implement integration test for federationFelix
2020-04-23Adding some more API testing examples.Dessalines
2020-04-23Adding a test bed for API testing. #658Dessalines