barometer 0.8.0 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +2 -0
- data/.pelusa.yml +7 -0
- data/.travis.yml +6 -3
- data/Gemfile +11 -1
- data/README.md +89 -244
- data/Rakefile +1 -1
- data/barometer.gemspec +22 -24
- data/lib/barometer.rb +14 -65
- data/lib/barometer/base.rb +35 -65
- data/lib/barometer/data.rb +15 -20
- data/lib/barometer/data/attribute.rb +19 -0
- data/lib/barometer/data/attributes/distance.rb +11 -0
- data/lib/barometer/data/attributes/float.rb +11 -0
- data/lib/barometer/data/attributes/integer.rb +11 -0
- data/lib/barometer/data/attributes/location.rb +11 -0
- data/lib/barometer/data/attributes/pressure.rb +11 -0
- data/lib/barometer/data/attributes/sun.rb +15 -0
- data/lib/barometer/data/attributes/temperature.rb +11 -0
- data/lib/barometer/data/attributes/time.rb +11 -0
- data/lib/barometer/data/attributes/vector.rb +11 -0
- data/lib/barometer/data/attributes/zone.rb +11 -0
- data/lib/barometer/data/convertable_units.rb +145 -0
- data/lib/barometer/data/coordinates.rb +16 -0
- data/lib/barometer/data/distance.rb +14 -133
- data/lib/barometer/data/geo.rb +22 -59
- data/lib/barometer/data/location.rb +14 -20
- data/lib/barometer/data/pressure.rb +14 -135
- data/lib/barometer/data/sun.rb +24 -24
- data/lib/barometer/data/temperature.rb +14 -169
- data/lib/barometer/data/vector.rb +44 -0
- data/lib/barometer/data/zone.rb +109 -112
- data/lib/barometer/query.rb +23 -161
- data/lib/barometer/query/base.rb +88 -0
- data/lib/barometer/query/converter.rb +64 -0
- data/lib/barometer/query/converters/from_coordinates_to_noaa_station_id.rb +30 -0
- data/lib/barometer/query/converters/from_geocode_to_coordinates.rb +28 -0
- data/lib/barometer/query/converters/from_short_zipcode_to_zipcode.rb +28 -0
- data/lib/barometer/query/converters/from_weather_id_to_geocode.rb +30 -0
- data/lib/barometer/query/converters/from_woe_id_or_ipv4_to_geocode.rb +32 -0
- data/lib/barometer/query/converters/to_geocode.rb +30 -0
- data/lib/barometer/query/converters/to_weather_id.rb +30 -0
- data/lib/barometer/query/converters/to_woe_id.rb +30 -0
- data/lib/barometer/query/format.rb +59 -0
- data/lib/barometer/query/formats/base.rb +22 -0
- data/lib/barometer/query/formats/coordinates.rb +14 -0
- data/lib/barometer/query/formats/geocode.rb +15 -0
- data/lib/barometer/query/formats/icao.rb +35 -0
- data/lib/barometer/query/formats/ipv4_address.rb +19 -0
- data/lib/barometer/query/formats/noaa_station_id.rb +15 -0
- data/lib/barometer/query/formats/postalcode.rb +20 -0
- data/lib/barometer/query/formats/short_zipcode.rb +15 -0
- data/lib/barometer/{translations → query/formats/translations}/icao_country_codes.yml +0 -0
- data/lib/barometer/{translations → query/formats/translations}/weather_country_codes.yml +0 -0
- data/lib/barometer/query/formats/unknown.rb +14 -0
- data/lib/barometer/query/formats/weather_id.rb +33 -0
- data/lib/barometer/query/formats/woe_id.rb +28 -0
- data/lib/barometer/query/formats/zipcode.rb +15 -0
- data/lib/barometer/query/service.rb +13 -0
- data/lib/barometer/query/services/apis/geonames_timezone.rb +26 -0
- data/lib/barometer/query/services/apis/google_geocode.rb +35 -0
- data/lib/barometer/query/services/apis/noaa_station.rb +31 -0
- data/lib/barometer/query/services/apis/weather_id.rb +35 -0
- data/lib/barometer/query/services/apis/wunderground_timezone.rb +26 -0
- data/lib/barometer/query/services/apis/yahoo_placefinder.rb +35 -0
- data/lib/barometer/query/services/apis/yahoo_weather.rb +31 -0
- data/lib/barometer/query/services/from_weather_id.rb +64 -0
- data/lib/barometer/query/services/geonames_timezone.rb +18 -0
- data/lib/barometer/query/services/google_geocode.rb +106 -0
- data/lib/barometer/query/services/noaa_station_id.rb +28 -0
- data/lib/barometer/query/services/to_weather_id.rb +25 -0
- data/lib/barometer/query/services/to_woe_id.rb +29 -0
- data/lib/barometer/query/services/wunderground_timezone.rb +18 -0
- data/lib/barometer/query/services/yahoo_geocode.rb +69 -0
- data/lib/barometer/response.rb +12 -0
- data/lib/barometer/response/base.rb +57 -0
- data/lib/barometer/response/current.rb +27 -0
- data/lib/barometer/response/prediction.rb +41 -0
- data/lib/barometer/response/prediction_collection.rb +48 -0
- data/lib/barometer/utils.rb +17 -0
- data/lib/barometer/utils/address.rb +33 -0
- data/lib/barometer/utils/api.rb +30 -0
- data/lib/barometer/utils/config_reader.rb +40 -0
- data/lib/barometer/utils/get.rb +17 -0
- data/lib/barometer/utils/json_reader.rb +22 -0
- data/lib/barometer/utils/payload.rb +100 -0
- data/lib/barometer/utils/payload_request.rb +37 -0
- data/lib/barometer/utils/post.rb +24 -0
- data/lib/barometer/utils/time.rb +78 -0
- data/lib/barometer/{translations → utils/translations}/zone_codes.yml +0 -0
- data/lib/barometer/utils/versioned_registration.rb +70 -0
- data/lib/barometer/utils/xml_reader.rb +27 -0
- data/lib/barometer/utils/zone_code_lookup.rb +30 -0
- data/lib/barometer/version.rb +1 -1
- data/lib/barometer/weather.rb +44 -173
- data/lib/barometer/weather_service.rb +41 -0
- data/lib/barometer/weather_services/base.rb +50 -0
- data/lib/barometer/weather_services/forecast_io.rb +36 -0
- data/lib/barometer/weather_services/forecast_io/api.rb +22 -0
- data/lib/barometer/weather_services/forecast_io/query.rb +38 -0
- data/lib/barometer/weather_services/forecast_io/response.rb +31 -0
- data/lib/barometer/weather_services/forecast_io/response/current_weather.rb +78 -0
- data/lib/barometer/weather_services/forecast_io/response/forecasted_weather.rb +74 -0
- data/lib/barometer/weather_services/forecast_io/response/location.rb +19 -0
- data/lib/barometer/weather_services/forecast_io/response/timezone.rb +25 -0
- data/lib/barometer/weather_services/noaa.rb +21 -305
- data/lib/barometer/weather_services/noaa/current_api.rb +25 -0
- data/lib/barometer/weather_services/noaa/current_query.rb +30 -0
- data/lib/barometer/weather_services/noaa/current_response.rb +29 -0
- data/lib/barometer/weather_services/noaa/forecast_api.rb +25 -0
- data/lib/barometer/weather_services/noaa/forecast_query.rb +39 -0
- data/lib/barometer/weather_services/noaa/forecast_response.rb +28 -0
- data/lib/barometer/weather_services/noaa/response/current_location.rb +42 -0
- data/lib/barometer/weather_services/noaa/response/current_station.rb +46 -0
- data/lib/barometer/weather_services/noaa/response/current_weather.rb +82 -0
- data/lib/barometer/weather_services/noaa/response/forecasted_weather.rb +90 -0
- data/lib/barometer/weather_services/noaa/response/location.rb +19 -0
- data/lib/barometer/weather_services/noaa/response/timezone.rb +15 -0
- data/lib/barometer/weather_services/response.rb +9 -0
- data/lib/barometer/weather_services/response/location.rb +42 -0
- data/lib/barometer/weather_services/response/time_zone.rb +19 -0
- data/lib/barometer/weather_services/weather_bug.rb +24 -280
- data/lib/barometer/weather_services/weather_bug/current_api.rb +26 -0
- data/lib/barometer/weather_services/weather_bug/current_response.rb +33 -0
- data/lib/barometer/weather_services/weather_bug/forecast_api.rb +26 -0
- data/lib/barometer/weather_services/weather_bug/forecast_response.rb +29 -0
- data/lib/barometer/weather_services/weather_bug/query.rb +42 -0
- data/lib/barometer/weather_services/weather_bug/response/current_weather.rb +82 -0
- data/lib/barometer/weather_services/weather_bug/response/forecasted_weather.rb +67 -0
- data/lib/barometer/weather_services/weather_bug/response/location.rb +23 -0
- data/lib/barometer/weather_services/weather_bug/response/station.rb +43 -0
- data/lib/barometer/weather_services/weather_bug/response/sun.rb +32 -0
- data/lib/barometer/weather_services/weather_bug/response/time_helper.rb +52 -0
- data/lib/barometer/weather_services/weather_bug/response/timezone.rb +15 -0
- data/lib/barometer/weather_services/wunderground_v1.rb +32 -0
- data/lib/barometer/weather_services/wunderground_v1/current_api.rb +21 -0
- data/lib/barometer/weather_services/wunderground_v1/current_response.rb +31 -0
- data/lib/barometer/weather_services/wunderground_v1/forecast_api.rb +21 -0
- data/lib/barometer/weather_services/wunderground_v1/forecast_response.rb +33 -0
- data/lib/barometer/weather_services/wunderground_v1/query.rb +30 -0
- data/lib/barometer/weather_services/wunderground_v1/response/current_weather.rb +92 -0
- data/lib/barometer/weather_services/wunderground_v1/response/forecasted_weather.rb +87 -0
- data/lib/barometer/weather_services/wunderground_v1/response/full_timezone.rb +22 -0
- data/lib/barometer/weather_services/wunderground_v1/response/location.rb +43 -0
- data/lib/barometer/weather_services/wunderground_v1/response/station.rb +39 -0
- data/lib/barometer/weather_services/wunderground_v1/response/sun.rb +53 -0
- data/lib/barometer/weather_services/wunderground_v1/response/timezone.rb +15 -0
- data/lib/barometer/weather_services/yahoo.rb +16 -198
- data/lib/barometer/weather_services/yahoo/api.rb +21 -0
- data/lib/barometer/weather_services/yahoo/query.rb +42 -0
- data/lib/barometer/weather_services/yahoo/response.rb +39 -0
- data/lib/barometer/weather_services/yahoo/response/current_weather.rb +86 -0
- data/lib/barometer/weather_services/yahoo/response/forecasted_weather.rb +71 -0
- data/lib/barometer/weather_services/yahoo/response/location.rb +47 -0
- data/lib/barometer/weather_services/yahoo/response/sun.rb +43 -0
- data/lib/barometer/weather_services/yahoo/response/timezone.rb +15 -0
- data/spec/barometer_spec.rb +18 -120
- data/spec/base_spec.rb +114 -0
- data/spec/cassettes/Converter_FromCoordinatesToNoaaStationId.json +1 -0
- data/spec/cassettes/Converter_FromWeatherIdToGeocode.json +1 -0
- data/spec/cassettes/Converter_FromWoeIdOrIpv4ToGeocode.json +1 -0
- data/spec/cassettes/Converter_ToGeocode.json +1 -0
- data/spec/cassettes/Converter_ToWeatherId.json +1 -0
- data/spec/cassettes/Converter_ToWoeId.json +1 -0
- data/spec/cassettes/Service_FromWeatherId.json +1 -0
- data/spec/cassettes/Service_GoogleGeocode.json +1 -0
- data/spec/cassettes/Service_NoaaStation.json +1 -0
- data/spec/cassettes/Service_ToWeatherId.json +1 -0
- data/spec/cassettes/Service_ToWoeId.json +1 -0
- data/spec/cassettes/Service_YahooGeocode.json +1 -0
- data/spec/cassettes/WeatherService_ForecastIo.json +1 -0
- data/spec/cassettes/WeatherService_Noaa.json +1 -1
- data/spec/cassettes/WeatherService_WeatherBug.json +1 -1
- data/spec/cassettes/WeatherService_WundergroundV1.json +1 -0
- data/spec/cassettes/WeatherService_Yahoo.json +1 -1
- data/spec/data/attributes/distance_spec.rb +60 -0
- data/spec/data/attributes/location_spec.rb +41 -0
- data/spec/data/attributes/pressure_spec.rb +60 -0
- data/spec/data/attributes/sun_spec.rb +33 -0
- data/spec/data/attributes/temperature_spec.rb +60 -0
- data/spec/data/attributes/time_spec.rb +58 -0
- data/spec/data/attributes/vector_spec.rb +43 -0
- data/spec/data/attributes/zone_spec.rb +34 -0
- data/spec/data/convertable_units_spec.rb +299 -0
- data/spec/data/coordinates_spec.rb +15 -0
- data/spec/data/distance_spec.rb +49 -333
- data/spec/data/geo_spec.rb +72 -71
- data/spec/data/location_spec.rb +70 -65
- data/spec/data/pressure_spec.rb +49 -333
- data/spec/data/sun_spec.rb +57 -81
- data/spec/data/temperature_spec.rb +49 -393
- data/spec/data/vector_spec.rb +100 -0
- data/spec/data/zone_spec.rb +199 -266
- data/spec/query/base_spec.rb +296 -0
- data/spec/query/converter_spec.rb +98 -0
- data/spec/query/converters/from_coordinates_to_noaa_station_id_spec.rb +35 -0
- data/spec/query/converters/from_geocode_to_coordinates_spec.rb +25 -0
- data/spec/query/converters/from_short_zipcode_to_zipcode_spec.rb +31 -0
- data/spec/query/converters/from_weather_id_to_geocode_spec.rb +40 -0
- data/spec/query/converters/from_woe_id_or_ipv4_to_geocode_spec.rb +51 -0
- data/spec/query/converters/to_geocode_spec.rb +99 -0
- data/spec/query/converters/to_weather_id_spec.rb +35 -0
- data/spec/query/converters/to_woe_id_spec.rb +74 -0
- data/spec/query/formats/base_spec.rb +15 -0
- data/spec/query/formats/coordinates_spec.rb +13 -0
- data/spec/query/formats/geocode_spec.rb +9 -0
- data/spec/query/formats/icao_spec.rb +20 -0
- data/spec/query/formats/ipv4_address_spec.rb +33 -0
- data/spec/query/formats/noaa_station_id_spec.rb +9 -0
- data/spec/query/formats/postalcode_spec.rb +18 -0
- data/spec/query/formats/short_zipcode_spec.rb +18 -0
- data/spec/query/formats/unknown_spec.rb +9 -0
- data/spec/query/formats/weather_id_spec.rb +31 -0
- data/spec/query/formats/woe_id_spec.rb +45 -0
- data/spec/query/formats/zipcode_spec.rb +18 -0
- data/spec/query/formats_spec.rb +55 -0
- data/spec/query/services/from_weather_id_spec.rb +54 -0
- data/spec/query/services/google_geocode_spec.rb +60 -0
- data/spec/query/services/noaa_station_id_spec.rb +23 -0
- data/spec/query/services/to_weather_id_spec.rb +23 -0
- data/spec/query/services/to_woe_id_spec.rb +51 -0
- data/spec/query/services/yahoo_geocode_spec.rb +72 -0
- data/spec/response/base_spec.rb +103 -0
- data/spec/response/current_spec.rb +33 -0
- data/spec/response/predicition_spec.rb +65 -0
- data/spec/response/prediction_collection_spec.rb +97 -0
- data/spec/spec_helper.rb +14 -12
- data/spec/support/key_file_parser.rb +22 -0
- data/spec/support/matchers/formats.rb +36 -0
- data/spec/support/matchers/have_data.rb +46 -0
- data/spec/support/matchers/have_field.rb +128 -0
- data/spec/support/matchers/have_forecast.rb +46 -0
- data/spec/support/matchers/path.rb +23 -0
- data/spec/support/query_factory.rb +20 -0
- data/spec/utils/address_spec.rb +67 -0
- data/spec/utils/config_reader_spec.rb +157 -0
- data/spec/utils/get_spec.rb +22 -0
- data/spec/utils/payload_request_spec.rb +69 -0
- data/spec/utils/payload_spec.rb +168 -0
- data/spec/utils/post_spec.rb +20 -0
- data/spec/utils/time_spec.rb +93 -0
- data/spec/utils/versioned_registration_spec.rb +105 -0
- data/spec/weather_services/base_spec.rb +116 -0
- data/spec/weather_services/forecast_io_spec.rb +71 -0
- data/spec/weather_services/noaa/current_response_spec.rb +22 -0
- data/spec/weather_services/noaa/forecast_response_spec.rb +33 -0
- data/spec/weather_services/noaa_spec.rb +68 -166
- data/spec/weather_services/weather_bug/current_response_spec.rb +64 -0
- data/spec/weather_services/weather_bug/forecast_response_spec.rb +23 -0
- data/spec/weather_services/weather_bug_spec.rb +62 -202
- data/spec/weather_services/wunderground_v1/current_response_spec.rb +19 -0
- data/spec/weather_services/wunderground_v1/forecast_response_spec.rb +62 -0
- data/spec/weather_services/wunderground_v1_spec.rb +78 -0
- data/spec/weather_services/yahoo/response_spec.rb +73 -0
- data/spec/weather_services/yahoo_spec.rb +52 -135
- data/spec/weather_services_spec.rb +103 -0
- data/spec/weather_spec.rb +167 -347
- metadata +342 -123
- data/.document +0 -5
- data/TODO +0 -60
- data/bin/barometer +0 -441
- data/lib/barometer/data/local_datetime.rb +0 -145
- data/lib/barometer/data/local_time.rb +0 -134
- data/lib/barometer/data/speed.rb +0 -158
- data/lib/barometer/data/units.rb +0 -49
- data/lib/barometer/formats.rb +0 -13
- data/lib/barometer/formats/coordinates.rb +0 -57
- data/lib/barometer/formats/format.rb +0 -64
- data/lib/barometer/formats/geocode.rb +0 -60
- data/lib/barometer/formats/icao.rb +0 -37
- data/lib/barometer/formats/postalcode.rb +0 -22
- data/lib/barometer/formats/short_zipcode.rb +0 -17
- data/lib/barometer/formats/weather_id.rb +0 -92
- data/lib/barometer/formats/woe_id.rb +0 -150
- data/lib/barometer/formats/zipcode.rb +0 -31
- data/lib/barometer/key_file_parser.rb +0 -20
- data/lib/barometer/measurements/measurement.rb +0 -202
- data/lib/barometer/measurements/result.rb +0 -207
- data/lib/barometer/measurements/result_array.rb +0 -75
- data/lib/barometer/services.rb +0 -19
- data/lib/barometer/weather_services/service.rb +0 -189
- data/lib/barometer/weather_services/wunderground.rb +0 -264
- data/lib/barometer/web_services/geocode.rb +0 -34
- data/lib/barometer/web_services/noaa_station_id.rb +0 -53
- data/lib/barometer/web_services/placemaker.rb +0 -95
- data/lib/barometer/web_services/timezone.rb +0 -38
- data/lib/barometer/web_services/weather_id.rb +0 -50
- data/lib/barometer/web_services/web_service.rb +0 -29
- data/spec/cassettes/Barometer.json +0 -1
- data/spec/cassettes/Query.json +0 -1
- data/spec/cassettes/Query_Format_Coordinates.json +0 -1
- data/spec/cassettes/Query_Format_Geocode.json +0 -1
- data/spec/cassettes/Query_Format_WeatherID.json +0 -1
- data/spec/cassettes/Query_Format_WoeID.json +0 -1
- data/spec/cassettes/WeatherService.json +0 -1
- data/spec/cassettes/WeatherService_Wunderground.json +0 -1
- data/spec/cassettes/WebService_Geocode.json +0 -1
- data/spec/cassettes/WebService_NoaaStation.json +0 -1
- data/spec/data/local_datetime_spec.rb +0 -274
- data/spec/data/local_time_spec.rb +0 -239
- data/spec/data/speed_spec.rb +0 -374
- data/spec/data/units_spec.rb +0 -101
- data/spec/formats/coordinates_spec.rb +0 -166
- data/spec/formats/format_spec.rb +0 -74
- data/spec/formats/geocode_spec.rb +0 -163
- data/spec/formats/icao_spec.rb +0 -55
- data/spec/formats/postalcode_spec.rb +0 -53
- data/spec/formats/short_zipcode_spec.rb +0 -47
- data/spec/formats/weather_id_spec.rb +0 -182
- data/spec/formats/woe_id_spec.rb +0 -211
- data/spec/formats/zipcode_spec.rb +0 -103
- data/spec/key_file_parser_spec.rb +0 -28
- data/spec/measurements/measurement_spec.rb +0 -381
- data/spec/measurements/result_array_spec.rb +0 -150
- data/spec/measurements/result_spec.rb +0 -632
- data/spec/query_spec.rb +0 -498
- data/spec/weather_services/services_spec.rb +0 -135
- data/spec/weather_services/wunderground_spec.rb +0 -179
- data/spec/web_services/geocode_spec.rb +0 -31
- data/spec/web_services/noaa_station_id_spec.rb +0 -33
- data/spec/web_services/placemaker_spec.rb +0 -41
- data/spec/web_services/web_services_spec.rb +0 -20
@@ -0,0 +1,18 @@
|
|
1
|
+
require_relative '../../spec_helper'
|
2
|
+
|
3
|
+
describe Barometer::Query::Format::ShortZipcode do
|
4
|
+
it ".country_code" do
|
5
|
+
Barometer::Query::Format::ShortZipcode.country_code(nil).should == "US"
|
6
|
+
Barometer::Query::Format::ShortZipcode.country_code("ignored").should == "US"
|
7
|
+
end
|
8
|
+
|
9
|
+
describe ".is?" do
|
10
|
+
it "recognizes a valid format" do
|
11
|
+
Barometer::Query::Format::ShortZipcode.is?("90210").should be_true
|
12
|
+
end
|
13
|
+
|
14
|
+
it "recognizes non-valid format" do
|
15
|
+
Barometer::Query::Format::ShortZipcode.is?("90210-5555").should be_false
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
require_relative '../../spec_helper'
|
2
|
+
|
3
|
+
describe Barometer::Query::Format::WeatherID do
|
4
|
+
it ".country_code" do
|
5
|
+
Barometer::Query::Format::WeatherID.country_code(nil).should be_nil
|
6
|
+
Barometer::Query::Format::WeatherID.country_code("i").should be_nil
|
7
|
+
Barometer::Query::Format::WeatherID.country_code("USGA0000").should == "US"
|
8
|
+
Barometer::Query::Format::WeatherID.country_code("CAAB0000").should == "CA"
|
9
|
+
Barometer::Query::Format::WeatherID.country_code("SPXX0000").should == "ES"
|
10
|
+
end
|
11
|
+
|
12
|
+
describe ".is?" do
|
13
|
+
it "recognizes a valid format" do
|
14
|
+
Barometer::Query::Format::WeatherID.is?("USGA0028").should be_true
|
15
|
+
end
|
16
|
+
|
17
|
+
it "recognizes non-valid format" do
|
18
|
+
Barometer::Query::Format::WeatherID.is?("invalid").should be_false
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
describe "fixing country codes" do
|
23
|
+
it "doesn't fix a correct code" do
|
24
|
+
Barometer::Query::Format::WeatherID.send("_fix_country", "CA").should == "CA"
|
25
|
+
end
|
26
|
+
|
27
|
+
it "fixes an incorrect code" do
|
28
|
+
Barometer::Query::Format::WeatherID.send("_fix_country", "SP").should == "ES"
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,45 @@
|
|
1
|
+
require_relative '../../spec_helper'
|
2
|
+
|
3
|
+
module Barometer::Query
|
4
|
+
describe Format::WoeID do
|
5
|
+
describe '.is?' do
|
6
|
+
it 'recognizes a valid 4 digit code format' do
|
7
|
+
expect( Format::WoeID.is?('8775') ).to be_true
|
8
|
+
end
|
9
|
+
|
10
|
+
it 'recognizes a valid 6 digit code format' do
|
11
|
+
expect( Format::WoeID.is?('615702') ).to be_true
|
12
|
+
end
|
13
|
+
|
14
|
+
it 'recognizes a valid 7 digit code format' do
|
15
|
+
expect( Format::WoeID.is?('2459115') ).to be_true
|
16
|
+
end
|
17
|
+
|
18
|
+
it 'recognizes a valid 5 digit code with a prepended "w"' do
|
19
|
+
expect( Format::WoeID.is?('w90210') ).to be_true
|
20
|
+
end
|
21
|
+
|
22
|
+
it 'does not recognize a zip code' do
|
23
|
+
expect( Format::WoeID.is?('90210') ).to be_false
|
24
|
+
end
|
25
|
+
|
26
|
+
it 'recognizes non-valid format' do
|
27
|
+
expect( Format::WoeID.is?('USGA0028') ).to be_false
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
describe '.convert_query' do
|
32
|
+
it 'recognizes standard woe ids' do
|
33
|
+
query_no_conversion = '2459115'
|
34
|
+
query = Barometer::Query.new(query_no_conversion)
|
35
|
+
expect( query.q ).to eq query_no_conversion
|
36
|
+
end
|
37
|
+
|
38
|
+
it 'removes the prefix from "w" prefixed queries' do
|
39
|
+
query_with_conversion = 'w90210'
|
40
|
+
query = Barometer::Query.new(query_with_conversion)
|
41
|
+
expect( query.q ).to eq '90210'
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require_relative '../../spec_helper'
|
2
|
+
|
3
|
+
describe Barometer::Query::Format::Zipcode do
|
4
|
+
it ".country_code" do
|
5
|
+
Barometer::Query::Format::Zipcode.country_code(nil).should == "US"
|
6
|
+
Barometer::Query::Format::Zipcode.country_code("ignored").should == "US"
|
7
|
+
end
|
8
|
+
|
9
|
+
describe ".is?" do
|
10
|
+
it "recognizes a valid format" do
|
11
|
+
Barometer::Query::Format::Zipcode.is?("90210-5555").should be_true
|
12
|
+
end
|
13
|
+
|
14
|
+
it "recognizes non-valid format" do
|
15
|
+
Barometer::Query::Format::Zipcode.is?("invalid").should be_false
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,55 @@
|
|
1
|
+
require_relative '../spec_helper'
|
2
|
+
|
3
|
+
describe Barometer::Query::Format do
|
4
|
+
def clear_formats
|
5
|
+
@formats_cache = Barometer::Query::Format.formats
|
6
|
+
Barometer::Query::Format.formats = []
|
7
|
+
end
|
8
|
+
|
9
|
+
def reset_formats
|
10
|
+
Barometer::Query::Format.formats = @formats_cache
|
11
|
+
end
|
12
|
+
|
13
|
+
describe ".register" do
|
14
|
+
before { clear_formats }
|
15
|
+
after { reset_formats }
|
16
|
+
|
17
|
+
it "adds the query format to the list of available formats" do
|
18
|
+
expect {
|
19
|
+
Barometer::Query::Format.register(:test_format, double(:format))
|
20
|
+
}.to change { Barometer::Query::Format.formats.count }.by(1)
|
21
|
+
end
|
22
|
+
|
23
|
+
it "raises an error if no format class given" do
|
24
|
+
expect {
|
25
|
+
Barometer::Query::Format.register(:test_format)
|
26
|
+
}.to raise_error(ArgumentError)
|
27
|
+
end
|
28
|
+
|
29
|
+
it "only registers a key once" do
|
30
|
+
format = double(:format)
|
31
|
+
Barometer::Query::Format.register(:test_format, format)
|
32
|
+
expect {
|
33
|
+
Barometer::Query::Format.register(:test_format, format)
|
34
|
+
}.not_to change { Barometer::Query::Format.formats.count }
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
describe ".find" do
|
39
|
+
before { clear_formats }
|
40
|
+
after { reset_formats }
|
41
|
+
|
42
|
+
it "returns a registered format" do
|
43
|
+
test_format = double(:test_format)
|
44
|
+
Barometer::Query::Format.register(:test_format, test_format)
|
45
|
+
|
46
|
+
Barometer::Query::Format.find(:test_format).should == test_format
|
47
|
+
end
|
48
|
+
|
49
|
+
it "raises an error if the format does not exist" do
|
50
|
+
expect {
|
51
|
+
Barometer::Query::Format.find(:test_format)
|
52
|
+
}.to raise_error(Barometer::Query::Format::NotFound)
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
@@ -0,0 +1,54 @@
|
|
1
|
+
require_relative '../../spec_helper'
|
2
|
+
|
3
|
+
module Barometer::Query
|
4
|
+
describe Service::FromWeatherId, vcr: {
|
5
|
+
cassette_name: 'Service::FromWeatherId'
|
6
|
+
} do
|
7
|
+
describe '#call' do
|
8
|
+
context 'when the query format is not :weather_id' do
|
9
|
+
let(:query) { Barometer::Query.new('90210') }
|
10
|
+
|
11
|
+
it 'returns nothing' do
|
12
|
+
geo = Service::FromWeatherId.new(query).call
|
13
|
+
expect( geo ).to be_nil
|
14
|
+
end
|
15
|
+
|
16
|
+
context 'and a :weather_id conversion exists' do
|
17
|
+
it 'returns the correct geo data' do
|
18
|
+
query.add_conversion(:weather_id, 'USNY0996')
|
19
|
+
geo = Service::FromWeatherId.new(query).call
|
20
|
+
|
21
|
+
expect( geo.latitude ).to eq 40.67
|
22
|
+
expect( geo.longitude ).to eq -73.94
|
23
|
+
expect( geo.locality ).to eq 'New York'
|
24
|
+
expect( geo.region ).to eq 'NY'
|
25
|
+
expect( geo.country_code ).to eq 'US'
|
26
|
+
|
27
|
+
expect( geo.query ).to be_nil
|
28
|
+
expect( geo.country ).to be_nil
|
29
|
+
expect( geo.address ).to be_nil
|
30
|
+
expect( geo.postal_code ).to be_nil
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
context 'when the query format is :weather_id' do
|
36
|
+
it 'returns the correct geo data' do
|
37
|
+
query = Barometer::Query.new('USNY0996')
|
38
|
+
geo = Service::FromWeatherId.new(query).call
|
39
|
+
|
40
|
+
expect( geo.latitude ).to eq 40.67
|
41
|
+
expect( geo.longitude ).to eq -73.94
|
42
|
+
expect( geo.locality ).to eq 'New York'
|
43
|
+
expect( geo.region ).to eq 'NY'
|
44
|
+
expect( geo.country_code ).to eq 'US'
|
45
|
+
|
46
|
+
expect( geo.query ).to be_nil
|
47
|
+
expect( geo.country ).to be_nil
|
48
|
+
expect( geo.address ).to be_nil
|
49
|
+
expect( geo.postal_code ).to be_nil
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
@@ -0,0 +1,60 @@
|
|
1
|
+
require_relative '../../spec_helper'
|
2
|
+
|
3
|
+
module Barometer::Query
|
4
|
+
describe Service::GoogleGeocode, vcr: {
|
5
|
+
cassette_name: 'Service::GoogleGeocode'
|
6
|
+
} do
|
7
|
+
describe '.call' do
|
8
|
+
context 'when the query is a :zipcode' do
|
9
|
+
it 'returns the correct Geo data' do
|
10
|
+
query = Barometer::Query.new('90210')
|
11
|
+
geo = Service::GoogleGeocode.new(query).call
|
12
|
+
|
13
|
+
expect( geo.query ).to eq '90210'
|
14
|
+
expect( geo.latitude ).to eq 34.1030032
|
15
|
+
expect( geo.longitude ).to eq -118.4104684
|
16
|
+
expect( geo.locality ).to eq 'Beverly Hills'
|
17
|
+
expect( geo.region ).to eq 'CA'
|
18
|
+
expect( geo.country ).to eq 'United States'
|
19
|
+
expect( geo.country_code ).to eq 'US'
|
20
|
+
expect( geo.address ).to be_nil
|
21
|
+
expect( geo.postal_code ).to eq '90210'
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
context 'when the query is a city/region' do
|
26
|
+
it 'returns the correct Geo data' do
|
27
|
+
query = Barometer::Query.new('New York, NY')
|
28
|
+
geo = Service::GoogleGeocode.new(query).call
|
29
|
+
|
30
|
+
expect( geo.query ).to eq 'New York, NY, US'
|
31
|
+
expect( geo.latitude ).to eq 40.7143528
|
32
|
+
expect( geo.longitude ).to eq -74.00597309999999
|
33
|
+
expect( geo.locality ).to eq 'New York'
|
34
|
+
expect( geo.region ).to eq 'NY'
|
35
|
+
expect( geo.country ).to eq 'United States'
|
36
|
+
expect( geo.country_code ).to eq 'US'
|
37
|
+
expect( geo.address ).to be_nil
|
38
|
+
expect( geo.postal_code ).to be_nil
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
context 'when the query is :coordinates' do
|
43
|
+
it 'returns the correct Geo data' do
|
44
|
+
query = Barometer::Query.new('47,-114')
|
45
|
+
geo = Service::GoogleGeocode.new(query).call
|
46
|
+
|
47
|
+
expect( geo.query ).to be_nil
|
48
|
+
expect( geo.latitude ).to eq 47.000623
|
49
|
+
expect( geo.longitude ).to eq -114.0016495
|
50
|
+
expect( geo.locality ).to eq 'Missoula'
|
51
|
+
expect( geo.region ).to eq 'MT'
|
52
|
+
expect( geo.country ).to eq 'United States'
|
53
|
+
expect( geo.country_code ).to eq 'US'
|
54
|
+
expect( geo.address ).to be_nil
|
55
|
+
expect( geo.postal_code ).to eq '59808'
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require_relative '../../spec_helper'
|
2
|
+
|
3
|
+
describe Barometer::Query::Service::NoaaStation, vcr: {
|
4
|
+
cassette_name: "Service::NoaaStation"
|
5
|
+
} do
|
6
|
+
describe ".fetch," do
|
7
|
+
it "returns nohing if query doesn't have coordinates format" do
|
8
|
+
query = Barometer::Query.new("90210")
|
9
|
+
Barometer::Query::Service::NoaaStation.fetch(query).should be_nil
|
10
|
+
end
|
11
|
+
|
12
|
+
it "returns a station_id if the query is format coordinates" do
|
13
|
+
query = Barometer::Query.new("34.10,-118.41")
|
14
|
+
Barometer::Query::Service::NoaaStation.fetch(query).should == "KSMO"
|
15
|
+
end
|
16
|
+
|
17
|
+
it "returns a station_id if the query has a corrdinates conversion" do
|
18
|
+
query = Barometer::Query.new("90210")
|
19
|
+
query.add_conversion(:coordinates, "34.10,-118.41")
|
20
|
+
Barometer::Query::Service::NoaaStation.fetch(query).should == "KSMO"
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require_relative '../../spec_helper'
|
2
|
+
|
3
|
+
describe Barometer::Query::Service::ToWeatherId, vcr: {
|
4
|
+
cassette_name: "Service::ToWeatherId"
|
5
|
+
} do
|
6
|
+
describe ".call," do
|
7
|
+
it "returns nothing if query doesn't have a supported format" do
|
8
|
+
query = Barometer::Query.new("90210")
|
9
|
+
Barometer::Query::Service::ToWeatherId.call(query).should be_nil
|
10
|
+
end
|
11
|
+
|
12
|
+
it "returns a weather_id if the query is format unknown" do
|
13
|
+
query = Barometer::Query.new("Paris, France")
|
14
|
+
Barometer::Query::Service::ToWeatherId.call(query).should == "FRXX0076"
|
15
|
+
end
|
16
|
+
|
17
|
+
it "returns a weather_id if the query has a supported conversion" do
|
18
|
+
query = Barometer::Query.new("10001")
|
19
|
+
query.add_conversion(:geocode, "New York, NY")
|
20
|
+
Barometer::Query::Service::ToWeatherId.call(query).should == "USNY0996"
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,51 @@
|
|
1
|
+
require_relative '../../spec_helper'
|
2
|
+
|
3
|
+
module Barometer::Query
|
4
|
+
describe Service::ToWoeId, vcr: {
|
5
|
+
cassette_name: 'Service::ToWoeId'
|
6
|
+
} do
|
7
|
+
describe '.call,' do
|
8
|
+
it 'returns nothing if query is an unsupported format' do
|
9
|
+
query = Barometer::Query.new('KSFO')
|
10
|
+
expect( Service::ToWoeId.new(query).call ).to be_nil
|
11
|
+
end
|
12
|
+
|
13
|
+
it 'returns a weather_id if the query is format short_zipcode' do
|
14
|
+
query = Barometer::Query.new('90210')
|
15
|
+
expect( Service::ToWoeId.new(query).call ).to eq '12795711'
|
16
|
+
end
|
17
|
+
|
18
|
+
it 'returns a weather_id if the query is format zipcode' do
|
19
|
+
query = Barometer::Query.new('10001-5555')
|
20
|
+
expect( Service::ToWoeId.new(query).call ).to eq '12761333'
|
21
|
+
end
|
22
|
+
|
23
|
+
it 'returns a weather_id if the query is format unknown' do
|
24
|
+
query = Barometer::Query.new('Paris, France')
|
25
|
+
expect( Service::ToWoeId.new(query).call ).to eq '12727257'
|
26
|
+
end
|
27
|
+
|
28
|
+
it 'returns a weather_id if the query is format coordinates' do
|
29
|
+
query = Barometer::Query.new('40.756054,-73.986951')
|
30
|
+
expect( Service::ToWoeId.new(query).call ).to eq '12761367'
|
31
|
+
end
|
32
|
+
|
33
|
+
it 'returns a weather_id if the query is format postal code' do
|
34
|
+
query = Barometer::Query.new('T5B 4M9')
|
35
|
+
expect( Service::ToWoeId.new(query).call ).to eq '12698082'
|
36
|
+
end
|
37
|
+
|
38
|
+
it 'returns a weather_id if the query is format ipv4 address' do
|
39
|
+
query = Barometer::Query.new('98.139.183.24')
|
40
|
+
expect( Service::ToWoeId.new(query).call ).to eq '12763119'
|
41
|
+
end
|
42
|
+
|
43
|
+
it 'returns a weather_id if the query has a converted geocode' do
|
44
|
+
query = Barometer::Query.new('KJFK')
|
45
|
+
query.add_conversion(:zipcode, '10001-5555')
|
46
|
+
|
47
|
+
expect( Service::ToWoeId.new(query).call ).to eq '12761333'
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
@@ -0,0 +1,72 @@
|
|
1
|
+
require_relative '../../spec_helper'
|
2
|
+
|
3
|
+
module Barometer::Query
|
4
|
+
describe Service::YahooGeocode, vcr: {
|
5
|
+
cassette_name: 'Service::YahooGeocode'
|
6
|
+
} do
|
7
|
+
describe '#call' do
|
8
|
+
context 'when the query format is unsupported' do
|
9
|
+
let(:query) { Barometer::Query.new('90210') }
|
10
|
+
|
11
|
+
it 'returns nothing' do
|
12
|
+
geo = Service::YahooGeocode.new(query).call
|
13
|
+
expect( geo ).to be_nil
|
14
|
+
end
|
15
|
+
|
16
|
+
context 'and a :woe_id conversion exists' do
|
17
|
+
it 'returns the correct geo data' do
|
18
|
+
query.add_conversion(:woe_id, '615702')
|
19
|
+
geo = Service::YahooGeocode.new(query).call
|
20
|
+
|
21
|
+
expect( geo.latitude ).to eq 48.85693
|
22
|
+
expect( geo.longitude ).to eq 2.3412
|
23
|
+
expect( geo.locality ).to eq 'Paris'
|
24
|
+
expect( geo.region ).to eq 'Ile-de-France'
|
25
|
+
expect( geo.country ).to eq 'France'
|
26
|
+
expect( geo.country_code ).to eq 'FR'
|
27
|
+
expect( geo.postal_code ).to eq '75001'
|
28
|
+
|
29
|
+
expect( geo.query ).to be_nil
|
30
|
+
expect( geo.address ).to be_nil
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
context 'when the query format is :woe_id' do
|
36
|
+
it 'returns the correct geo data' do
|
37
|
+
query = Barometer::Query.new('615702')
|
38
|
+
geo = Service::YahooGeocode.new(query).call
|
39
|
+
|
40
|
+
expect( geo.latitude ).to eq 48.85693
|
41
|
+
expect( geo.longitude ).to eq 2.3412
|
42
|
+
expect( geo.locality ).to eq 'Paris'
|
43
|
+
expect( geo.region ).to eq 'Ile-de-France'
|
44
|
+
expect( geo.country ).to eq 'France'
|
45
|
+
expect( geo.country_code ).to eq 'FR'
|
46
|
+
expect( geo.postal_code ).to eq '75001'
|
47
|
+
|
48
|
+
expect( geo.query ).to be_nil
|
49
|
+
expect( geo.address ).to be_nil
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
context 'when the query format is :ipv4_address' do
|
54
|
+
it 'returns the correct geo data' do
|
55
|
+
query = Barometer::Query.new('8.8.8.8')
|
56
|
+
geo = Service::YahooGeocode.new(query).call
|
57
|
+
|
58
|
+
expect( geo.latitude ).to eq 37.418726
|
59
|
+
expect( geo.longitude ).to eq -122.072037
|
60
|
+
expect( geo.locality ).to eq 'Mountain View'
|
61
|
+
expect( geo.region ).to eq 'CA'
|
62
|
+
expect( geo.country_code ).to eq 'US'
|
63
|
+
expect( geo.country ).to eq 'United States'
|
64
|
+
expect( geo.postal_code ).to eq '94043'
|
65
|
+
|
66
|
+
expect( geo.query ).to be_nil
|
67
|
+
expect( geo.address ).to be_nil
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|