Giter Club home page Giter Club logo

Comments (7)

DavisVaughan avatar DavisVaughan commented on May 30, 2024 1

Eventually for CRAN we will likely need a skip_if_no_auth() function. See riingo helper R file. Must be named helper_*.R for testthat. https://github.com/business-science/riingo/tree/master/tests/testthat

Also might get CRAN push back on donttest{} wrapped code, but I got around it by explaining my reasoning that auth is needed for testing and that I test extensively on Travis for riingo

from fredr.

DavisVaughan avatar DavisVaughan commented on May 30, 2024 1

See the reply from hrbrmstr here https://stackoverflow.com/questions/47333912/r-package-vignette-include-api-key it covers all the bases of what you should do for API testing.

rtweet generally follows that advice and sets eval = FALSE for the chunks in the vignette. Its annoying but its the best you can do i think. I wouldnt try and cache / save data and try and load it in (to mock the API calls) unless it was really small files
http://rtweet.info/articles/intro.html
https://raw.githubusercontent.com/mkearney/rtweet/master/vignettes/intro.Rmd

from fredr.

DavisVaughan avatar DavisVaughan commented on May 30, 2024

It kind of depends on how good the API errors are. Normally I do some kind of validity checks on the class of the object, and maybe some other lower level feature. Like limit should be a non-negative integer, which we can check, but we would let the API check to see if it goes >1000 or >100000 since it changes depending on the endpoint. Other things we can do are ensure that limit is an integer (100L) even if the user passes a numeric (100), because it doesn't work with numerics. We can perform that autoconversion for them.

Another thing I was planning on doing is making observation_date (and others like it) only accept Date objects rather than strings. That way, the format is always correct which we can then use format(x, format = "%Y-%m%-%d") on to get it in the right format for the API. It also allows us to have unit tests on the observation_date parameter by checking for a Date class.

Generally, I was planning on having a capture_args(...) function that will accept all parameters and perform checks and modifications on them, and will return a param list that can be passed on to use in the API call. I will explain more in the PR tonight

from fredr.

DavisVaughan avatar DavisVaughan commented on May 30, 2024

We should also think about cases where 0 row tibbles are returned, because I think i ran into an issues with fredr_series where that failed with a strange (at least to a user) error.

from fredr.

sboysel avatar sboysel commented on May 30, 2024

I see. Any idea on how to deal with vignettes when the API key isn't present?

from fredr.

sboysel avatar sboysel commented on May 30, 2024

Thanks for the tip! I'll follow that

from fredr.

sboysel avatar sboysel commented on May 30, 2024

Tests were overhauled to adopt this framework in f20f510. We can extend and modify testing as needed as development continues. Some remarks:

  • The use of helper functions defined in R/validation.R can be used to extend function checking
  • fredr() endpoint validation (a6d82f8)
  • skip_if_no_key() defined and used in tests requiring authentication (#29 )
  • Vignette chunks are cached and not evaluated when the API key is not present (72e5ddd)

from fredr.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.