Sha256: 28725e0f8d22d4040a6706491ec23141b48bbd2dd2008f7a831084c37e648938
Contents?: true
Size: 1.42 KB
Versions: 3
Compression:
Stored size: 1.42 KB
Contents
ENV['RACK_ENV'] ||= 'test' require 'grape-app' require 'rack/test' require 'virtus' class Article include Virtus.model class Scope include Enumerable def maximum(*) map(&:updated_at).max end def each yield Article.new(id: 1, title: 'Welcome', updated_at: Time.at(1515151510).utc, created_at: Time.at(1515151500).utc) yield Article.new(id: 2, title: 'Bye', updated_at: Time.at(1515151520).utc, created_at: Time.at(1515151500).utc) end end def self.all Scope.new end attribute :id attribute :title attribute :updated_at attribute :created_at def to_param id.to_s end end class TestAPI < Grape::API format :json helpers Grape::App::Helpers::Caching helpers Grape::App::Helpers::Params get '/articles' do scope = Article.all opts = params[:public] ? { public: params[:public] } : {} fresh_when(scope, **opts) scope.map(&:to_hash) end get '/articles/never_updated' do article = Article.all.first article.updated_at = nil fresh_when(article, last_modified_field: :created_at) end get '/articles/:id' do article = Article.all.first article.to_hash if stale?(article, stale_if_error: 5, extras: { a: 1, b: 2 }) end params do requires :title optional :fresh end post '/articles' do attrs = { id: 9, updated_at: Time.at(1515151515).utc } attrs.update(declared_params) Article.new(attrs).to_hash end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
grape-app-0.8.7 | spec/spec_helper.rb |
grape-app-0.8.6 | spec/spec_helper.rb |
grape-app-0.8.5 | spec/spec_helper.rb |