braque-hypermedia_responses_helpers 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: d6c2ff0fd1edcd31e21f91409842f86b8f55a0ca
4
+ data.tar.gz: 702eb2a22654ff3fdb39ddd51417d0606448ea45
5
+ SHA512:
6
+ metadata.gz: 3e1ba35d690f4648d5111234b481ec7a992af8e8d2e2e6c3b28ca20cda6e1519ee6e1bc5df6506efc8bf65be8623ddd54b5e200fd138f3ed494665e90c46cd80
7
+ data.tar.gz: f610f9cc29b9f51b51c163e3a2eeb0b2e546aabdc5aaa0a799fc5f08cd110cf60c6cfd8f79e570b27921dc2896faffac5f27b676ab5c9ab0e55b6e076d222ce2
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in braque-hypermedia_responses_helpers.gemspec
4
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Dylan Fareed
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,28 @@
1
+ # Braque::HypermediaResponsesHelpers
2
+
3
+ A collection of helpers to mock hypermedia API endpoints for Braque::Model classes.
4
+
5
+ Extracted from and best used in collaboration with [Braque](https://github.com/dylanfareed/braque).
6
+
7
+ [![Build Status](https://semaphoreci.com/api/v1/projects/ca636418-1e03-4916-9a71-9cd25ad3e148/533471/badge.svg)](https://semaphoreci.com/dylanfareed/braque-hypermedia_responses_helpers)
8
+
9
+ ## Installation
10
+
11
+ Add this line to your application's Gemfile:
12
+
13
+ ```ruby
14
+ gem 'braque-hypermedia_responses_helpers'
15
+ ```
16
+
17
+ ## Development
18
+
19
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests.
20
+
21
+ ## Contributing
22
+
23
+ Bug reports and pull requests are welcome on GitHub at https://github.com/dylanfareed/braque-hypermedia_responses_helpers. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
24
+
25
+
26
+ ## License
27
+
28
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
@@ -0,0 +1,6 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rspec/core/rake_task'
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "braque/hypermedia_responses_helpers"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'braque/hypermedia_responses_helpers/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'braque-hypermedia_responses_helpers'
8
+ spec.version = Braque::HypermediaResponsesHelpers::VERSION
9
+ spec.authors = ['Dylan Fareed']
10
+ spec.email = ['email@dylanfareed.com']
11
+
12
+ spec.summary = 'A collection of helpers for Braque to mock hypermedia API endpoints.'
13
+ spec.description = 'A collection of helpers for Braque to mock hypermedia API endpoints.'
14
+ spec.homepage = 'https://github.com/dylanfareed/braque-hypermedia_responses_helpers'
15
+ spec.license = 'MIT'
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = 'exe'
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_development_dependency 'bundler', '~> 1.10'
23
+ spec.add_development_dependency 'rake', '~> 10.0'
24
+ spec.add_development_dependency 'rspec'
25
+ spec.add_development_dependency 'braque', '~> 0.1.8'
26
+ end
@@ -0,0 +1,64 @@
1
+ require 'braque/hypermedia_responses_helpers/version'
2
+
3
+ module Braque
4
+ module HypermediaResponsesHelpers
5
+ # For a given Braque::Model class, mock a root endpoint.
6
+ #
7
+ def hypermedia_root_json_for(hyperclient_model_class, options = {})
8
+ collection_query_options = options[:collection_query] || '{?page,size}'
9
+ resource_path_options = options[:resource_path] || '{id}'
10
+ root_hash = {}
11
+ root_hash[:_links] = {}
12
+ root_hash[:_links][:self] = { href: hyperclient_model_class.config[:api_root_url] }
13
+ root_hash[:_links][hyperclient_model_class.collection_method_name] = { href: "#{hyperclient_model_class.config[:api_root_url]}/#{hyperclient_model_class.collection_method_name}#{collection_query_options}", templated: true }
14
+ root_hash[:_links][hyperclient_model_class.instance_method_name] = { href: "#{hyperclient_model_class.config[:api_root_url]}/#{hyperclient_model_class.collection_method_name}/#{resource_path_options}", templated: true }
15
+ JSON.parse root_hash.to_json
16
+ end
17
+
18
+ # For a given Braque::Model class, mock a collection endpoint response.
19
+ #
20
+ def hypermedia_collection_json_for(hyperclient_model_collection, options = {})
21
+ hyperclient_model = hyperclient_model_collection.first
22
+ collection_hash = {}
23
+ collection_hash[:total_count] = 1
24
+ collection_hash[:total_pages] = 1
25
+ collection_hash[:current_page] = 1
26
+ collection_hash[:_links] = {}
27
+ collection_hash[:_links][:self] = { href: "#{hyperclient_model.class.config[:api_root_url]}/#{hyperclient_model.class.collection_method_name}" }
28
+ collection_hash[:_links][:next] = { href: "#{hyperclient_model.class.config[:api_root_url]}/#{hyperclient_model.class.collection_method_name}" }
29
+ collection_hash[:_links][:prev] = { href: "#{hyperclient_model.class.config[:api_root_url]}/#{hyperclient_model.class.collection_method_name}" }
30
+ collection_hash[:_embedded] = {}
31
+ collection_hash[:_embedded][hyperclient_model.class.collection_method_name] = embedded_elements_for_collection(hyperclient_model_collection, options)
32
+ JSON.parse collection_hash.to_json
33
+ end
34
+
35
+ # For a given Braque::Model class, mock a resource endpoint response.
36
+ #
37
+ def hypermedia_resource_json_for(hyperclient_model, options = {})
38
+ resource_hash = embedded_element(hyperclient_model, options)
39
+ JSON.parse resource_hash.to_json
40
+ end
41
+
42
+ private
43
+
44
+ def embedded_elements_for_collection(hyperclient_model_collection, options = {})
45
+ embedded_elements = []
46
+ hyperclient_model_collection.each do |model|
47
+ embedded_elements << embedded_element(model, options)
48
+ end
49
+ embedded_elements
50
+ end
51
+
52
+ def embedded_element(model, options = {})
53
+ resource_path_str = eval(options[:resource_path].to_s) if options[:resource_path]
54
+ resource_path = resource_path_str || model.id
55
+ hyperclient_element = {}
56
+ model.attributes.each_key do |key|
57
+ hyperclient_element[key] = model.send(key)
58
+ end
59
+ hyperclient_element[:_links] = {}
60
+ hyperclient_element[:_links][:self] = { href: "#{model.class.config[:api_root_url]}/#{model.class.collection_method_name}/#{resource_path}" }
61
+ hyperclient_element
62
+ end
63
+ end
64
+ end
@@ -0,0 +1,5 @@
1
+ module Braque
2
+ module HypermediaResponsesHelpers
3
+ VERSION = '0.1.0'
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,112 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: braque-hypermedia_responses_helpers
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Dylan Fareed
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-09-07 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.10'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.10'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: braque
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 0.1.8
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 0.1.8
69
+ description: A collection of helpers for Braque to mock hypermedia API endpoints.
70
+ email:
71
+ - email@dylanfareed.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".gitignore"
77
+ - ".rspec"
78
+ - CODE_OF_CONDUCT.md
79
+ - Gemfile
80
+ - LICENSE.txt
81
+ - README.md
82
+ - Rakefile
83
+ - bin/console
84
+ - bin/setup
85
+ - braque-hypermedia_responses_helpers.gemspec
86
+ - lib/braque/hypermedia_responses_helpers.rb
87
+ - lib/braque/hypermedia_responses_helpers/version.rb
88
+ homepage: https://github.com/dylanfareed/braque-hypermedia_responses_helpers
89
+ licenses:
90
+ - MIT
91
+ metadata: {}
92
+ post_install_message:
93
+ rdoc_options: []
94
+ require_paths:
95
+ - lib
96
+ required_ruby_version: !ruby/object:Gem::Requirement
97
+ requirements:
98
+ - - ">="
99
+ - !ruby/object:Gem::Version
100
+ version: '0'
101
+ required_rubygems_version: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - ">="
104
+ - !ruby/object:Gem::Version
105
+ version: '0'
106
+ requirements: []
107
+ rubyforge_project:
108
+ rubygems_version: 2.4.8
109
+ signing_key:
110
+ specification_version: 4
111
+ summary: A collection of helpers for Braque to mock hypermedia API endpoints.
112
+ test_files: []