summaryrefslogtreecommitdiff
path: root/config/test.exs
AgeCommit message (Collapse)Author
2023-12-20Fix more Logger warn -> warningMark Felder
2023-12-12Revert "EmailTest: use config mock"Lain Soykaf
This reverts commit dca41cc4a37999a6971b70ef5e0996e528b79bf5.
2023-12-12EmailTest: use config mockLain Soykaf
2023-12-12Tests: More test fixesLain Soykaf
2023-12-12RichMediaTest: Use mocked configLain Soykaf
2023-12-12ScheduledActivity: Use config mockingLain Soykaf
2023-12-11S3 Test: Remove global state dependenciesLain Soykaf
2023-12-10Backup: Fix configLain Soykaf
2023-12-10Tests: Fix all the tests.Lain Soykaf
2023-12-10Backup Tests: Split out async tests, use mox.Lain Soykaf
2023-12-10Config/Test: Don't start promex during testing.Lain Soykaf
2023-11-12B Getting: Add default implementation, delegate, prepare test support.Lain Soykaf
2022-12-20Merge remote-tracking branch 'upstream/develop' into meilisearchEkaterina Vaartis
2022-12-15Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into update-depsLain Soykaf
2022-11-11fix envvarlain
2022-11-11allow custom db portIván Raskovsky
2022-11-03Update to Phoenix 1.6 and chase dependenciesMark Felder
Also bump minimum Elixir to 1.11
2022-11-03expanding WebFingerAlexander Strizhakov
2022-10-10Rename Activity.Search to Search.DatabaseSearchEkaterina Vaartis
2022-10-10Add tests for local post indexing for meilisearchEkaterina Vaartis
2022-10-10Initial meilisearch implementation, doesn't delete posts yetEkaterina Vaartis
2021-05-28Merge branch 'plug-runtime-dev' into 'develop'feld
Put Plugs in runtime mode in :dev, :test to speed up recompilation See merge request pleroma/pleroma!3411
2021-05-20Switch from the deprecated "use Mix.config" to "import Config"Mark Felder
2021-05-19Put Plugs in runtime mode in :dev, :test to speed up recompilationAlex Gleason
2021-02-19Avoid unnecessary 500ms sleeps from CommonAPI.follow when the target user is ↵Mark Felder
remote
2021-01-20Merge branch 'deprecate-public_endpoint' into 'develop'feld
Deprecate Uploaders.S3, :public_endpoint See merge request pleroma/pleroma!3251
2021-01-13Not needed in test.exsMark Felder
2021-01-13Password: Add password modulelain
Replaces Pbkdf2.
2021-01-12Deprecate Pleroma.Uploaders.S3, :public_endpointMark Felder
2021-01-04SideEffects.DeleteTest: asyncify.lain
Replace Mock with Mox, mock out Logger.
2020-12-21Pipeline test: Switch from Mock to Mox.lain
Speeds up the test and makes it possible to run async.
2020-12-21Test config: Raise pool size for postgres.lain
Given all the async tests, this can become a bottleneck.
2020-12-18Tests: Use NullCache for async tests.lain
Caching can't work in async tests, so for them it is mocked to a null cache that is always empty. Synchronous tests are stubbed with the real Cachex, which is emptied after every test.
2020-11-26removing fed sockets settingsAlexander Strizhakov
2020-10-13RemoteIp module nameAlexander Strizhakov
2020-10-01web push http_client fixAlexander Strizhakov
2020-09-18Federate data through persistent websocket connectionsSteven Fuchs
2020-09-08test: remove extraneous :instances_favicons config bitsHaelwenn (lanodan) Monnier
2020-09-07passing adapter options directly without adapter keyAlexander Strizhakov
2020-08-18Test config: Default to filename for descriptionslain
2020-08-04Test Config: Don't have any MRFs by defaultlain
2020-07-24remove duplicate moduleMaksim Pechnikov
2020-07-12MediaProxy whitelist setting now supports hosts with schemeAlexander Strizhakov
added deprecation warning about using bare domains
2020-07-10Merge branch 'develop' into issue/1790-updated-obanMark Felder
2020-07-08Add [:instances_favicons, :enabled] setting, defaults to falseHaelwenn (lanodan) Monnier
2020-06-23migrate to oban 2.0-rc1Maksim Pechnikov
2020-05-07Pleroma.Web.TwitterAPI.TwoFactorAuthenticationController -> ↵Maksim
Pleroma.Web.PleromaAPI.TwoFactorAuthenticationController
2020-05-04Enable strict validation mode in dev and test environmentsEgor Kislitsyn
2020-03-16Merge branch 'develop' into gunAlexander Strizhakov
2020-03-13rate limiter: disable based on if remote ip was found, not on if the plug ↵rinpatch
was enabled The current rate limiter disable logic won't trigger when the remote ip is not forwarded, only when the remoteip plug is not enabled, which is not the case on most instances since it's enabled by default. This changes the behavior to warn and disable when the remote ip was not forwarded, even if the RemoteIP plug is enabled. Also closes #1620