You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tests for some packages fail in environments without access to BETYdb. E.g. PEcAn.BIOCRO.
Proposed Solution
I'm familiar with "webmocking", where requests to an API are stored and then used to simulate future API calls for unit tests without the necessity for a internet connection. A preliminary search for database mocking turned up with dittodb, an rOpenSci package inspired by httrtest (for webmocking) but for mocking database connections. Using database mocking with tests would help make PEcAn packages more modular and would be necessary for passing unit tests for CRAN.
Alternatives
Skip these failing tests on CI and CRAN and rely on PEcAn's integration tests (not 100% sure how these work)?
Write a custom function / data to stand up a minimal database to use for testing
Use a more general (but harder to use) mocking package like mockery
The text was updated successfully, but these errors were encountered:
A lot of the complexity in that file is my fault (from 5 years ago now!) -- feel free to ask me me questions about it as needed. It may be obvious, but in case: Note that there are two separate kinds of mocking at play here.
the settings object expects to contain a live database connection that will be used inside the run.biocro call. This is the thing @Aariq is proposing to mock.
The calls to mock_result are trying to keep the tests working after I added some /very/ hacky internal code to support two very different versions of the BioCro model. We may want to consider sunsetting support for the older version, but that's a separate project.
(^all of that applies only to this particular BioCro test, not to bety-dependent tests in other packages)
Description
Tests for some packages fail in environments without access to BETYdb. E.g. PEcAn.BIOCRO.
Proposed Solution
I'm familiar with "webmocking", where requests to an API are stored and then used to simulate future API calls for unit tests without the necessity for a internet connection. A preliminary search for database mocking turned up with
dittodb
, an rOpenSci package inspired byhttrtest
(for webmocking) but for mocking database connections. Using database mocking with tests would help make PEcAn packages more modular and would be necessary for passing unit tests for CRAN.Alternatives
The text was updated successfully, but these errors were encountered: