tdberlintest 0.0.6 → 0.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f39df2ad661a6a2bb40058c77f25808c0da01d6c
4
- data.tar.gz: f5d2dca0f07d4325c06ff5f3dde405d4b7df4b83
3
+ metadata.gz: 92f9629f4887cbf8347a601dbf16cc4a34b56211
4
+ data.tar.gz: 4ced00e799e479a752b884ad021c732b8e778df8
5
5
  SHA512:
6
- metadata.gz: e22269e0be51c14e3249b729f8b6625fe07f6970079866c1c1a29cd7377d66a901f876f0e47355e99ad1588c8dd8467842a5ed2c8f835859f9877eaacb15b417
7
- data.tar.gz: 9b8ebb789920f00685e9d5f4667666c078a4126bc4f9258ace9e8e42e74df8a353f06e8543096b07d248d9750c519eb8ee369da90bb5c2f13bb006c5ce1efc04
6
+ metadata.gz: 717c72f8803a62b273bfcd71db7664cd9f50c41b4e29a5b4243a7744db90866acaad15fe793adca7ff64f7e757d3ee71fab60c191a3090648761d34b3c22e5d9
7
+ data.tar.gz: e32da15401fc3bb2e279b8fc6a04fe827be6971d35bbd3628f82480572a7d43796ff0c28ea839e42e48150ae70833ef35d40a04da18a6603583a184e544a00cd
data/.rspec ADDED
File without changes
data/README.md CHANGED
@@ -1,6 +1,4 @@
1
- # TdberlinTest
2
-
3
- TODO: Write a gem description
1
+ # td-berlin.com Test Solution Proposal
4
2
 
5
3
  ## Installation
6
4
 
@@ -20,12 +18,33 @@ Or install it yourself as:
20
18
 
21
19
  ## Usage
22
20
 
23
- TODO: Write usage instructions here
21
+ Create any ruby file, e.g. test.rb and add this line at the beginning:
22
+ ```ruby
23
+ require 'tdberlintest'
24
+ ```
25
+
26
+ Now run
27
+ ruby test.rb
28
+ You will see this:
29
+
30
+ Commands:
31
+ test.rb help [COMMAND] # Describe available commands or one specific command
32
+ test.rb task1 # execute task1 of test. specify input yaml file. e.g.: ruby test.rb task1 -i langs.yaml
33
+ test.rb task2 # execute task2 of test. specify input yaml file. e.g.: ruby test.rb task2 -i langs.yaml
34
+
35
+ If you want to read the task1 requirements, type:
36
+ test.rb help task1
37
+
38
+ So in order to execute any of the two tasks, you will need to specify a yaml file.
39
+ So you could go ahead and could create e.g. the yaml file 'langs.yaml' with this content:
40
+
41
+ ---
42
+ - langs: [ruby, scheme, haskell]
43
+
44
+ So if you now run the command:
45
+
46
+ ruby test.rb task1 -i pathtoyamlfile/langs.yaml
24
47
 
25
- ## Contributing
48
+ you should see the result after a few seconds.
26
49
 
27
- 1. Fork it ( https://github.com/[my-github-username]/tdberlintest/fork )
28
- 2. Create your feature branch (`git checkout -b my-new-feature`)
29
- 3. Commit your changes (`git commit -am 'Add some feature'`)
30
- 4. Push to the branch (`git push origin my-new-feature`)
31
- 5. Create a new Pull Request
50
+ Same steps for task2!
@@ -7,6 +7,8 @@ module TdBerlinTest
7
7
  class StackexchangeApiFetcher
8
8
  DefaultQueryURI = "https://api.stackexchange.com/2.2/tags"
9
9
 
10
+ attr_accessor :language_data, :result
11
+
10
12
  def initialize(yaml_file)
11
13
  @language_data = parse_yaml_file(yaml_file)
12
14
  end
@@ -23,7 +25,8 @@ module TdBerlinTest
23
25
  result_hash[language] = tag_usage_count
24
26
  end
25
27
 
26
- output_result(result_hash)
28
+ @result = sort_result_by_tag_usage_count(result_hash)
29
+ output_result(@result)
27
30
  end
28
31
 
29
32
  def fetch_stackoverflow(language)
@@ -41,12 +44,12 @@ module TdBerlinTest
41
44
  end
42
45
  end
43
46
 
44
- def sort_result(hash)
45
- hash.sort_by { |language, tag_usage_count| tag_usage_count }.reverse
47
+ def sort_result_by_tag_usage_count(hash)
48
+ temp = hash.sort_by { |language, tag_usage_count| tag_usage_count }.reverse.to_h
46
49
  end
47
50
 
48
51
  def output_result(hash)
49
- ap sort_result(hash).to_h, :indent => -2
52
+ ap @result, :indent => -2
50
53
  end
51
54
  end
52
55
  end
@@ -1,3 +1,3 @@
1
1
  module TdBerlinTest
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end
data/lib/tdberlintest.rb CHANGED
@@ -8,7 +8,7 @@ require_relative 'stackoverflow_api_fetcher'
8
8
  module TdBerlinTest
9
9
  class TestManager < Thor
10
10
 
11
- desc 'task1', 'execute task1 of test. specify input yaml file. e.g.: ./test.rb task1 -i langs.yaml'
11
+ desc 'task1', 'execute task1 of test. specify input yaml file. e.g.: ruby test.rb task1 -i langs.yaml'
12
12
  long_desc <<-LONGDESC
13
13
  Query the Wolfram Alpha API and parse the output.
14
14
 
@@ -35,7 +35,7 @@ module TdBerlinTest
35
35
  wolfram_api_fetcher.run
36
36
  end
37
37
 
38
- desc 'task2', 'execute task2 of test. specify input yaml file. e.g.: ./test.rb task2 -i langs.yaml'
38
+ desc 'task2', 'execute task2 of test. specify input yaml file. e.g.: ruby test.rb task2 -i langs.yaml'
39
39
  long_desc <<-LONGDESC
40
40
  Query the Stackexchange API and parse the output.
41
41
 
@@ -6,6 +6,7 @@ module TdBerlinTest
6
6
  class WolframApiFetcher
7
7
  WOLFRAM_APP_ID = 'Q6LH5Y-3JA7L335LL'
8
8
 
9
+ attr_accessor :language_data, :result
9
10
 
10
11
  def initialize(yaml_file)
11
12
  @language_data = parse_yaml_file(yaml_file)
@@ -0,0 +1,2 @@
1
+ ---
2
+ - langs: [ruby, scheme, haskell]
@@ -0,0 +1,9 @@
1
+ test_json = '{
2
+ "items":[
3
+ {"has_synonyms":true,"is_moderator_only":false,"is_required":false,"count":190401,"name":"ruby-on-rails"},
4
+ {"has_synonyms":false,"is_moderator_only":false,"is_required":false,"count":123770,"name":"ruby"}
5
+ ],
6
+ "has_more":true,
7
+ "quota_max":300,
8
+ "quota_remaining":225
9
+ }'
@@ -4,7 +4,7 @@ require 'yaml'
4
4
 
5
5
  describe WolframApiFetcher do
6
6
  before :each do
7
-
7
+ # @book = Book.new 'Title', 'Author', :category
8
8
  end
9
9
 
10
10
  it '' do
@@ -0,0 +1,62 @@
1
+ require_relative '../lib/stackoverflow_api_fetcher'
2
+ # require_relative 'fixtures/test_json'
3
+ require 'open-uri'
4
+ require 'json'
5
+
6
+ describe TdBerlinTest::StackexchangeApiFetcher do
7
+ before(:each) do
8
+ $stackoverflow_api_fetcher = TdBerlinTest::StackexchangeApiFetcher.new 'fixtures/langs.yaml'
9
+ end
10
+
11
+ describe '.run' do
12
+ it 'should exist' do
13
+ expect($stackoverflow_api_fetcher).to respond_to(:run)
14
+ end
15
+ end
16
+
17
+ describe '.run' do
18
+ it 'give the correct result for the test data' do
19
+ $stackoverflow_api_fetcher.run
20
+ expect($stackoverflow_api_fetcher.result['ruby']).to be > 100000
21
+ end
22
+ end
23
+
24
+ describe '.parse_yaml_file' do
25
+ it 'should parse the sample yaml file correctly' do
26
+ expect($stackoverflow_api_fetcher).to respond_to(:parse_yaml_file)
27
+ expect($stackoverflow_api_fetcher.language_data[0].keys[0]).to eq 'langs'
28
+ end
29
+ end
30
+
31
+ describe '.fetch_stackoverflow' do
32
+ it 'should return a xml response for ruby as input language' do
33
+ xml_response = JSON.parse($stackoverflow_api_fetcher.fetch_stackoverflow('ruby'))
34
+ expect(xml_response.keys.include?('items')).to be_truthy
35
+ end
36
+ end
37
+
38
+ # TODO: move the content of test_json out into fixture
39
+ describe '.get_tag_usage_count_from_json' do
40
+ it 'should return a number greater than 100000' do
41
+ test_json = '{
42
+ "items":[
43
+ {"has_synonyms":true,"is_moderator_only":false,"is_required":false,"count":190401,"name":"ruby-on-rails"},
44
+ {"has_synonyms":false,"is_moderator_only":false,"is_required":false,"count":123770,"name":"ruby"}
45
+ ],
46
+ "has_more":true,
47
+ "quota_max":300,
48
+ "quota_remaining":225
49
+ }'
50
+
51
+ ruby_tag_count = $stackoverflow_api_fetcher.get_tag_usage_count_from_json(test_json, 'ruby')
52
+ expect(ruby_tag_count).to be > 100000
53
+ end
54
+ end
55
+
56
+ describe '.sort_result_by_tag_usage_count' do
57
+ it 'should sort the items of an input hash by value of items' do
58
+ result_hash = $stackoverflow_api_fetcher.sort_result_by_tag_usage_count({'a' => 3, 'b' => 5})
59
+ expect(result_hash).to eq({'b' => 5, 'a' => 3})
60
+ end
61
+ end
62
+ end
@@ -0,0 +1,20 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'TdBerlinTest/TestManager'
4
+
5
+ module TdBerlinTest
6
+ class TestManager < Thor
7
+
8
+ def task1
9
+ wolfram_api_fetcher = TdBerlinTest::WolframApiFetcher.new options[:input]
10
+ wolfram_api_fetcher.run
11
+ end
12
+
13
+ def task2
14
+ stackexchange_api_fetcher = TdBerlinTest::StackexchangeApiFetcher.new options[:input]
15
+ stackexchange_api_fetcher.run
16
+ end
17
+ end
18
+ end
19
+
20
+ TdBerlinTest::TestManager.start(ARGV)
@@ -0,0 +1,30 @@
1
+ require_relative '../lib/wolfram_api_fetcher'
2
+ require 'open-uri'
3
+ require 'json'
4
+
5
+ describe TdBerlinTest::WolframApiFetcher do
6
+ before(:each) do
7
+ $wolfram_api_fetcher = TdBerlinTest::WolframApiFetcher.new 'fixtures/langs.yaml'
8
+ end
9
+
10
+ describe '.run' do
11
+ it 'should exist' do
12
+ expect($wolfram_api_fetcher).to respond_to(:run)
13
+ end
14
+ end
15
+
16
+ # a rough integration test to make sure we get a result
17
+ describe '.run' do
18
+ it 'give the correct result for the test data' do
19
+ $wolfram_api_fetcher.run
20
+ expect($wolfram_api_fetcher.result_array.empty?).to_not be_truthy
21
+ end
22
+ end
23
+
24
+ describe '.parse_yaml_file' do
25
+ it 'should parse the sample yaml file correctly' do
26
+ expect($wolfram_api_fetcher).to respond_to(:parse_yaml_file)
27
+ expect($wolfram_api_fetcher.language_data[0].keys[0]).to eq 'langs'
28
+ end
29
+ end
30
+ end
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tdberlintest
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Phil Stahlschmidt
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-18 00:00:00.000000000 Z
11
+ date: 2015-01-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -130,6 +130,7 @@ extensions: []
130
130
  extra_rdoc_files: []
131
131
  files:
132
132
  - ".gitignore"
133
+ - ".rspec"
133
134
  - Gemfile
134
135
  - LICENSE.txt
135
136
  - README.md
@@ -138,10 +139,14 @@ files:
138
139
  - lib/stackoverflow_api_fetcher.rb
139
140
  - lib/tdberlintest.rb
140
141
  - lib/tdberlintest/version.rb
141
- - lib/tests/test_helper.rb
142
- - lib/tests/wolfram_api_fetcher_spec.rb
143
142
  - lib/wolfram_api_fetcher.rb
144
- - tdberlintest-0.0.5.gem
143
+ - spec/fixtures/langs.yaml
144
+ - spec/fixtures/test_json.rb
145
+ - spec/spec_helper.rb
146
+ - spec/stackoverflow_api_fetcher_spec.rb
147
+ - spec/tdberlintest_spec.rb
148
+ - spec/wolfram_api_fetcher_spec.rb
149
+ - tdberlintest-0.0.6.gem
145
150
  - tdberlintest.gemspec
146
151
  homepage: http://www.td-berlin.com
147
152
  licenses:
@@ -167,4 +172,10 @@ rubygems_version: 2.2.2
167
172
  signing_key:
168
173
  specification_version: 4
169
174
  summary: td-berlin.com test solution.
170
- test_files: []
175
+ test_files:
176
+ - spec/fixtures/langs.yaml
177
+ - spec/fixtures/test_json.rb
178
+ - spec/spec_helper.rb
179
+ - spec/stackoverflow_api_fetcher_spec.rb
180
+ - spec/tdberlintest_spec.rb
181
+ - spec/wolfram_api_fetcher_spec.rb
@@ -1,8 +0,0 @@
1
- require_relative '../wolfram_api_fetcher'
2
-
3
- describe wolfram_api_fetcher, '#score' do
4
- it 'is just a placeholder' do
5
- wolfram_api_fetcher = TdBerlinTest::WolframApiFetcher.new 'langs.yaml'
6
- expect(wolfram_api_fetcher.score).to eq(0)
7
- end
8
- end
Binary file