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 +4 -4
- data/.rspec +0 -0
- data/README.md +29 -10
- data/lib/stackoverflow_api_fetcher.rb +7 -4
- data/lib/tdberlintest/version.rb +1 -1
- data/lib/tdberlintest.rb +2 -2
- data/lib/wolfram_api_fetcher.rb +1 -0
- data/spec/fixtures/langs.yaml +2 -0
- data/spec/fixtures/test_json.rb +9 -0
- data/{lib/tests/test_helper.rb → spec/spec_helper.rb} +1 -1
- data/spec/stackoverflow_api_fetcher_spec.rb +62 -0
- data/spec/tdberlintest_spec.rb +20 -0
- data/spec/wolfram_api_fetcher_spec.rb +30 -0
- data/tdberlintest-0.0.6.gem +0 -0
- metadata +17 -6
- data/lib/tests/wolfram_api_fetcher_spec.rb +0 -8
- data/tdberlintest-0.0.5.gem +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 92f9629f4887cbf8347a601dbf16cc4a34b56211
|
4
|
+
data.tar.gz: 4ced00e799e479a752b884ad021c732b8e778df8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 717c72f8803a62b273bfcd71db7664cd9f50c41b4e29a5b4243a7744db90866acaad15fe793adca7ff64f7e757d3ee71fab60c191a3090648761d34b3c22e5d9
|
7
|
+
data.tar.gz: e32da15401fc3bb2e279b8fc6a04fe827be6971d35bbd3628f82480572a7d43796ff0c28ea839e42e48150ae70833ef35d40a04da18a6603583a184e544a00cd
|
data/.rspec
ADDED
File without changes
|
data/README.md
CHANGED
@@ -1,6 +1,4 @@
|
|
1
|
-
#
|
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
|
-
|
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
|
-
|
48
|
+
you should see the result after a few seconds.
|
26
49
|
|
27
|
-
|
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
|
-
|
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
|
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
|
52
|
+
ap @result, :indent => -2
|
50
53
|
end
|
51
54
|
end
|
52
55
|
end
|
data/lib/tdberlintest/version.rb
CHANGED
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.:
|
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.:
|
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
|
|
data/lib/wolfram_api_fetcher.rb
CHANGED
@@ -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
|
+
}'
|
@@ -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.
|
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-
|
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
|
-
-
|
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
|
data/tdberlintest-0.0.5.gem
DELETED
Binary file
|