google-adwords-api 0.7.0 → 0.7.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (130) hide show
  1. data/ChangeLog +3 -0
  2. data/README +3 -3
  3. data/examples/v201206/basic_operations/add_campaigns.rb +7 -2
  4. data/examples/v201209/account_management/create_account.rb +84 -0
  5. data/examples/v201209/account_management/get_account_alerts.rb +111 -0
  6. data/examples/v201209/account_management/get_account_changes.rb +137 -0
  7. data/examples/v201209/account_management/get_account_hierarchy.rb +92 -0
  8. data/examples/v201209/account_management/get_client_customer_id.rb +85 -0
  9. data/examples/v201209/account_management/get_client_unit_usage.rb +87 -0
  10. data/examples/v201209/basic_operations/add_ad_groups.rb +136 -0
  11. data/examples/v201209/basic_operations/add_campaigns.rb +159 -0
  12. data/examples/v201209/basic_operations/add_keywords.rb +108 -0
  13. data/examples/v201209/basic_operations/add_text_ads.rb +105 -0
  14. data/examples/v201209/basic_operations/delete_ad.rb +85 -0
  15. data/examples/v201209/basic_operations/delete_ad_group.rb +102 -0
  16. data/examples/v201209/basic_operations/delete_campaign.rb +103 -0
  17. data/examples/v201209/basic_operations/delete_keyword.rb +90 -0
  18. data/examples/v201209/basic_operations/get_ad_groups.rb +98 -0
  19. data/examples/v201209/basic_operations/get_campaigns.rb +93 -0
  20. data/examples/v201209/basic_operations/get_campaigns_with_awql.rb +85 -0
  21. data/examples/v201209/basic_operations/get_keywords.rb +104 -0
  22. data/examples/v201209/basic_operations/get_text_ads.rb +106 -0
  23. data/examples/v201209/basic_operations/pause_ad.rb +84 -0
  24. data/examples/v201209/basic_operations/update_ad_group.rb +81 -0
  25. data/examples/v201209/basic_operations/update_campaign.rb +82 -0
  26. data/examples/v201209/basic_operations/update_keyword.rb +99 -0
  27. data/examples/v201209/campaign_management/add_experiment.rb +158 -0
  28. data/examples/v201209/campaign_management/add_keywords_in_bulk.rb +150 -0
  29. data/examples/v201209/campaign_management/add_location_extension.rb +117 -0
  30. data/examples/v201209/campaign_management/add_location_extension_override.rb +83 -0
  31. data/examples/v201209/campaign_management/get_all_disapproved_ads.rb +93 -0
  32. data/examples/v201209/campaign_management/get_all_disapproved_ads_with_awql.rb +84 -0
  33. data/examples/v201209/campaign_management/promote_experiment.rb +77 -0
  34. data/examples/v201209/campaign_management/set_ad_parameters.rb +114 -0
  35. data/examples/v201209/campaign_management/validate_text_ad.rb +106 -0
  36. data/examples/v201209/error_handling/handle_captcha_challenge.rb +93 -0
  37. data/examples/v201209/error_handling/handle_partial_failures.rb +126 -0
  38. data/examples/v201209/error_handling/handle_policy_violation_error.rb +137 -0
  39. data/examples/v201209/error_handling/handle_two_factor_authorization_error.rb +87 -0
  40. data/examples/v201209/misc/get_all_images_and_videos.rb +100 -0
  41. data/examples/v201209/misc/upload_image.rb +89 -0
  42. data/examples/v201209/misc/use_oauth.rb +100 -0
  43. data/examples/v201209/misc/use_oauth2.rb +97 -0
  44. data/examples/v201209/optimization/estimate_keyword_traffic.rb +129 -0
  45. data/examples/v201209/optimization/get_keyword_bid_simulations.rb +92 -0
  46. data/examples/v201209/optimization/get_keyword_ideas.rb +114 -0
  47. data/examples/v201209/optimization/get_placement_ideas.rb +104 -0
  48. data/examples/v201209/remarketing/add_audience.rb +115 -0
  49. data/examples/v201209/remarketing/add_conversion_tracker.rb +97 -0
  50. data/examples/v201209/reporting/download_criteria_report.rb +79 -0
  51. data/examples/v201209/reporting/download_criteria_report_with_awql.rb +78 -0
  52. data/examples/v201209/reporting/get_campaign_stats.rb +105 -0
  53. data/examples/v201209/reporting/get_report_fields.rb +71 -0
  54. data/examples/v201209/reporting/parallel_report_download.rb +160 -0
  55. data/examples/v201209/targeting/add_campaign_targeting_criteria.rb +118 -0
  56. data/examples/v201209/targeting/add_demographic_targeting_criteria.rb +108 -0
  57. data/examples/v201209/targeting/get_campaign_targeting_criteria.rb +102 -0
  58. data/examples/v201209/targeting/get_targetable_languages_and_carriers.rb +86 -0
  59. data/examples/v201209/targeting/lookup_location.rb +104 -0
  60. data/lib/adwords_api/api_config.rb +64 -5
  61. data/lib/adwords_api/errors.rb +15 -0
  62. data/lib/adwords_api/report_utils.rb +30 -11
  63. data/lib/adwords_api/v201209/ad_extension_override_service.rb +38 -0
  64. data/lib/adwords_api/v201209/ad_extension_override_service_registry.rb +46 -0
  65. data/lib/adwords_api/v201209/ad_group_ad_service.rb +42 -0
  66. data/lib/adwords_api/v201209/ad_group_ad_service_registry.rb +46 -0
  67. data/lib/adwords_api/v201209/ad_group_criterion_service.rb +42 -0
  68. data/lib/adwords_api/v201209/ad_group_criterion_service_registry.rb +46 -0
  69. data/lib/adwords_api/v201209/ad_group_service.rb +42 -0
  70. data/lib/adwords_api/v201209/ad_group_service_registry.rb +46 -0
  71. data/lib/adwords_api/v201209/ad_param_service.rb +38 -0
  72. data/lib/adwords_api/v201209/ad_param_service_registry.rb +46 -0
  73. data/lib/adwords_api/v201209/alert_service.rb +34 -0
  74. data/lib/adwords_api/v201209/alert_service_registry.rb +46 -0
  75. data/lib/adwords_api/v201209/budget_order_service.rb +42 -0
  76. data/lib/adwords_api/v201209/budget_order_service_registry.rb +46 -0
  77. data/lib/adwords_api/v201209/budget_service.rb +38 -0
  78. data/lib/adwords_api/v201209/budget_service_registry.rb +46 -0
  79. data/lib/adwords_api/v201209/campaign_ad_extension_service.rb +38 -0
  80. data/lib/adwords_api/v201209/campaign_ad_extension_service_registry.rb +46 -0
  81. data/lib/adwords_api/v201209/campaign_criterion_service.rb +42 -0
  82. data/lib/adwords_api/v201209/campaign_criterion_service_registry.rb +46 -0
  83. data/lib/adwords_api/v201209/campaign_service.rb +42 -0
  84. data/lib/adwords_api/v201209/campaign_service_registry.rb +46 -0
  85. data/lib/adwords_api/v201209/constant_data_service.rb +62 -0
  86. data/lib/adwords_api/v201209/constant_data_service_registry.rb +46 -0
  87. data/lib/adwords_api/v201209/conversion_tracker_service.rb +38 -0
  88. data/lib/adwords_api/v201209/conversion_tracker_service_registry.rb +46 -0
  89. data/lib/adwords_api/v201209/customer_service.rb +34 -0
  90. data/lib/adwords_api/v201209/customer_service_registry.rb +46 -0
  91. data/lib/adwords_api/v201209/customer_sync_service.rb +34 -0
  92. data/lib/adwords_api/v201209/customer_sync_service_registry.rb +47 -0
  93. data/lib/adwords_api/v201209/data_service.rb +38 -0
  94. data/lib/adwords_api/v201209/data_service_registry.rb +46 -0
  95. data/lib/adwords_api/v201209/experiment_service.rb +38 -0
  96. data/lib/adwords_api/v201209/experiment_service_registry.rb +46 -0
  97. data/lib/adwords_api/v201209/geo_location_service.rb +34 -0
  98. data/lib/adwords_api/v201209/geo_location_service_registry.rb +46 -0
  99. data/lib/adwords_api/v201209/info_service.rb +34 -0
  100. data/lib/adwords_api/v201209/info_service_registry.rb +46 -0
  101. data/lib/adwords_api/v201209/location_criterion_service.rb +34 -0
  102. data/lib/adwords_api/v201209/location_criterion_service_registry.rb +46 -0
  103. data/lib/adwords_api/v201209/managed_customer_service.rb +38 -0
  104. data/lib/adwords_api/v201209/managed_customer_service_registry.rb +46 -0
  105. data/lib/adwords_api/v201209/media_service.rb +38 -0
  106. data/lib/adwords_api/v201209/media_service_registry.rb +46 -0
  107. data/lib/adwords_api/v201209/mutate_job_service.rb +42 -0
  108. data/lib/adwords_api/v201209/mutate_job_service_registry.rb +46 -0
  109. data/lib/adwords_api/v201209/report_definition_service.rb +34 -0
  110. data/lib/adwords_api/v201209/report_definition_service_registry.rb +46 -0
  111. data/lib/adwords_api/v201209/targeting_idea_service.rb +38 -0
  112. data/lib/adwords_api/v201209/targeting_idea_service_registry.rb +46 -0
  113. data/lib/adwords_api/v201209/traffic_estimator_service.rb +34 -0
  114. data/lib/adwords_api/v201209/traffic_estimator_service_registry.rb +46 -0
  115. data/lib/adwords_api/v201209/user_list_service.rb +38 -0
  116. data/lib/adwords_api/v201209/user_list_service_registry.rb +46 -0
  117. data/lib/adwords_api/version.rb +1 -1
  118. data/test/adwords_api/test_report_utils.rb +94 -6
  119. data/test/examples/v201209/test_account_management.rb +60 -0
  120. data/test/examples/v201209/test_basic_operations.rb +177 -0
  121. data/test/examples/v201209/test_campaign_management.rb +124 -0
  122. data/test/examples/v201209/test_error_handling.rb +63 -0
  123. data/test/examples/v201209/test_misc.rb +45 -0
  124. data/test/examples/v201209/test_optimization.rb +63 -0
  125. data/test/examples/v201209/test_remarketing.rb +39 -0
  126. data/test/examples/v201209/test_reporting.rb +84 -0
  127. data/test/examples/v201209/test_targeting.rb +60 -0
  128. data/test/examples/v201209/utils.rb +238 -0
  129. data/test/suite_exampletests_v201209.rb +37 -0
  130. metadata +123 -2
@@ -0,0 +1,124 @@
1
+ #!/usr/bin/env ruby
2
+ # Encoding: utf-8
3
+ #
4
+ # Author:: api.dklimkin@gmail.com (Danial Klimkin)
5
+ #
6
+ # Copyright:: Copyright 2012, Google Inc. All Rights Reserved.
7
+ #
8
+ # License:: Licensed under the Apache License, Version 2.0 (the "License");
9
+ # you may not use this file except in compliance with the License.
10
+ # You may obtain a copy of the License at
11
+ #
12
+ # http://www.apache.org/licenses/LICENSE-2.0
13
+ #
14
+ # Unless required by applicable law or agreed to in writing, software
15
+ # distributed under the License is distributed on an "AS IS" BASIS,
16
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
17
+ # implied.
18
+ # See the License for the specific language governing permissions and
19
+ # limitations under the License.
20
+ #
21
+ # Tests the campaign management examples.
22
+
23
+ require 'test/unit'
24
+
25
+ require 'campaign_management/add_experiment'
26
+ require 'campaign_management/add_keywords_in_bulk'
27
+ require 'campaign_management/add_location_extension'
28
+ require 'campaign_management/add_location_extension_override'
29
+ require 'campaign_management/get_all_disapproved_ads'
30
+ require 'campaign_management/get_all_disapproved_ads_with_awql'
31
+ require 'campaign_management/promote_experiment'
32
+ require 'campaign_management/set_ad_parameters'
33
+ require 'campaign_management/validate_text_ad'
34
+
35
+ RETRY_INTERVAL = 5
36
+ RETRIES_COUNT = 3
37
+ KEYWORD_NUMBER = 3
38
+
39
+ class TestCampaignManagementV201209 < Test::Unit::TestCase
40
+ def setup
41
+ @logger = Logger.new(STDOUT)
42
+ @logger.level = Logger::ERROR
43
+ @adwords = AdwordsApi::Api.new
44
+ @adwords.logger = @logger
45
+ @utils = UtilsV201209.new(@adwords)
46
+ end
47
+
48
+ def test_add_experiment
49
+ campaign = @utils.get_campaign()
50
+ ad_group = @utils.get_ad_group()
51
+ criterion = @utils.get_keyword()
52
+ assert_not_nil(campaign)
53
+ assert_not_nil(campaign[:id])
54
+ assert_not_nil(ad_group)
55
+ assert_not_nil(ad_group[:id])
56
+ assert_not_nil(criterion)
57
+ assert_not_nil(criterion[:criterion])
58
+ assert_not_nil(criterion[:criterion][:id])
59
+ add_experiment(campaign[:id], ad_group[:id], criterion[:criterion][:id])
60
+ end
61
+
62
+ def test_add_keywords_in_bulk
63
+ add_keywords_in_bulk()
64
+ end
65
+
66
+ def test_add_location_extension
67
+ campaign = @utils.get_campaign()
68
+ assert_not_nil(campaign)
69
+ assert_not_nil(campaign[:id])
70
+ add_location_extension(campaign[:id])
71
+ end
72
+
73
+ def test_add_location_extension_override
74
+ ad = @utils.get_ad()
75
+ location_extension = @utils.get_location_extension()
76
+ assert_not_nil(ad)
77
+ assert_not_nil(ad[:ad])
78
+ assert_not_nil(ad[:ad][:id])
79
+ assert_not_nil(location_extension)
80
+ assert_not_nil(location_extension[:ad_extension])
81
+ assert_not_nil(location_extension[:ad_extension][:id])
82
+ add_location_extension_override(
83
+ ad[:ad][:id], location_extension[:ad_extension][:id])
84
+ end
85
+
86
+ def test_get_all_disapproved_ads
87
+ ad_group = @utils.get_ad_group()
88
+ assert_not_nil(ad_group)
89
+ assert_not_nil(ad_group[:id])
90
+ get_all_disapproved_ads(ad_group[:id])
91
+ end
92
+
93
+ def test_get_all_disapproved_ads_with_awql
94
+ ad_group = @utils.get_ad_group()
95
+ assert_not_nil(ad_group)
96
+ assert_not_nil(ad_group[:id])
97
+ get_all_disapproved_ads_with_awql(ad_group[:id])
98
+ end
99
+
100
+ def test_promote_experiment
101
+ experiment = @utils.get_experiment()
102
+ assert_not_nil(experiment)
103
+ assert_not_nil(experiment[:id])
104
+ promote_experiment(experiment[:id])
105
+ end
106
+
107
+ def test_set_ad_parameters
108
+ ad_group = @utils.get_ad_group()
109
+ assert_not_nil(ad_group)
110
+ assert_not_nil(ad_group[:id])
111
+ criterion = @utils.get_keyword()
112
+ assert_not_nil(criterion)
113
+ assert_not_nil(criterion[:criterion])
114
+ assert_not_nil(criterion[:criterion][:id])
115
+ set_ad_parameters(ad_group[:id], criterion[:criterion][:id])
116
+ end
117
+
118
+ def test_validate_text_ad
119
+ ad_group = @utils.get_ad_group()
120
+ assert_not_nil(ad_group)
121
+ assert_not_nil(ad_group[:id])
122
+ validate_text_ad(ad_group[:id])
123
+ end
124
+ end
@@ -0,0 +1,63 @@
1
+ #!/usr/bin/env ruby
2
+ # Encoding: utf-8
3
+ #
4
+ # Author:: api.dklimkin@gmail.com (Danial Klimkin)
5
+ #
6
+ # Copyright:: Copyright 2012, Google Inc. All Rights Reserved.
7
+ #
8
+ # License:: Licensed under the Apache License, Version 2.0 (the "License");
9
+ # you may not use this file except in compliance with the License.
10
+ # You may obtain a copy of the License at
11
+ #
12
+ # http://www.apache.org/licenses/LICENSE-2.0
13
+ #
14
+ # Unless required by applicable law or agreed to in writing, software
15
+ # distributed under the License is distributed on an "AS IS" BASIS,
16
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
17
+ # implied.
18
+ # See the License for the specific language governing permissions and
19
+ # limitations under the License.
20
+ #
21
+ # Tests the error handling examples.
22
+
23
+ require 'test/unit'
24
+
25
+ require 'error_handling/handle_captcha_challenge'
26
+ require 'error_handling/handle_partial_failures'
27
+ require 'error_handling/handle_policy_violation_error'
28
+ require 'error_handling/handle_two_factor_authorization_error'
29
+
30
+ MAX_RETRIES = 50
31
+
32
+ class TestErrorHandlingV201209 < Test::Unit::TestCase
33
+ def setup
34
+ @logger = Logger.new(STDOUT)
35
+ @logger.level = Logger::ERROR
36
+ @adwords = AdwordsApi::Api.new
37
+ @adwords.logger = @logger
38
+ @utils = UtilsV201209.new(@adwords)
39
+ end
40
+
41
+ # This test is disabled as it requires user input.
42
+ def disabled_test_handle_captcha_challenge
43
+ handle_captcha_challenge()
44
+ end
45
+
46
+ def test_handle_partial_failures
47
+ ad_group = @utils.get_ad_group()
48
+ assert_not_nil(ad_group)
49
+ assert_not_nil(ad_group[:id])
50
+ handle_partial_failures(ad_group[:id])
51
+ end
52
+
53
+ def test_handle_policy_violation_error
54
+ ad_group = @utils.get_ad_group()
55
+ assert_not_nil(ad_group)
56
+ assert_not_nil(ad_group[:id])
57
+ handle_policy_violation_error(ad_group[:id])
58
+ end
59
+
60
+ def test_handle_two_factor_authorization_error
61
+ handle_two_factor_authorization_error()
62
+ end
63
+ end
@@ -0,0 +1,45 @@
1
+ #!/usr/bin/env ruby
2
+ # Encoding: utf-8
3
+ #
4
+ # Author:: api.dklimkin@gmail.com (Danial Klimkin)
5
+ #
6
+ # Copyright:: Copyright 2012, Google Inc. All Rights Reserved.
7
+ #
8
+ # License:: Licensed under the Apache License, Version 2.0 (the "License");
9
+ # you may not use this file except in compliance with the License.
10
+ # You may obtain a copy of the License at
11
+ #
12
+ # http://www.apache.org/licenses/LICENSE-2.0
13
+ #
14
+ # Unless required by applicable law or agreed to in writing, software
15
+ # distributed under the License is distributed on an "AS IS" BASIS,
16
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
17
+ # implied.
18
+ # See the License for the specific language governing permissions and
19
+ # limitations under the License.
20
+ #
21
+ # Tests the misc examples.
22
+
23
+ require 'test/unit'
24
+
25
+ require 'misc/get_all_images_and_videos'
26
+ require 'misc/upload_image'
27
+ require 'misc/use_oauth'
28
+
29
+ class TestMiscV201209 < Test::Unit::TestCase
30
+ def setup
31
+ end
32
+
33
+ def test_get_all_images_and_videos
34
+ get_all_images_and_videos()
35
+ end
36
+
37
+ def test_upload_image
38
+ upload_image()
39
+ end
40
+
41
+ # This test is disabled as it requires user input.
42
+ def disabled_test_use_oauth
43
+ use_oauth()
44
+ end
45
+ end
@@ -0,0 +1,63 @@
1
+ #!/usr/bin/env ruby
2
+ # Encoding: utf-8
3
+ #
4
+ # Author:: api.dklimkin@gmail.com (Danial Klimkin)
5
+ #
6
+ # Copyright:: Copyright 2012, Google Inc. All Rights Reserved.
7
+ #
8
+ # License:: Licensed under the Apache License, Version 2.0 (the "License");
9
+ # you may not use this file except in compliance with the License.
10
+ # You may obtain a copy of the License at
11
+ #
12
+ # http://www.apache.org/licenses/LICENSE-2.0
13
+ #
14
+ # Unless required by applicable law or agreed to in writing, software
15
+ # distributed under the License is distributed on an "AS IS" BASIS,
16
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
17
+ # implied.
18
+ # See the License for the specific language governing permissions and
19
+ # limitations under the License.
20
+ #
21
+ # Tests the optimization examples.
22
+
23
+ require 'test/unit'
24
+
25
+ require 'optimization/estimate_keyword_traffic'
26
+ require 'optimization/get_keyword_bid_simulations'
27
+ require 'optimization/get_keyword_ideas'
28
+ require 'optimization/get_placement_ideas'
29
+
30
+ class TestOptimizationV201209 < Test::Unit::TestCase
31
+ def setup
32
+ @logger = Logger.new(STDOUT)
33
+ @logger.level = Logger::ERROR
34
+ @adwords = AdwordsApi::Api.new
35
+ @adwords.logger = @logger
36
+ @utils = UtilsV201209.new(@adwords)
37
+ end
38
+
39
+ def test_estimate_keyword_traffic
40
+ estimate_keyword_traffic()
41
+ end
42
+
43
+ def test_get_keyword_bid_simulations
44
+ ad_group = @utils.get_ad_group()
45
+ assert_not_nil(ad_group)
46
+ assert_not_nil(ad_group[:id])
47
+ keyword = @utils.get_keyword()
48
+ assert_not_nil(keyword)
49
+ assert_not_nil(keyword[:criterion])
50
+ assert_not_nil(keyword[:criterion][:id])
51
+ get_criterion_bid_landscapes(ad_group[:id], keyword[:criterion][:id])
52
+ end
53
+
54
+ def test_get_keyword_ideas
55
+ keyword_text = 'orion tours'
56
+ get_keyword_ideas(keyword_text)
57
+ end
58
+
59
+ def test_get_placement_ideas
60
+ url = 'http://example.google.com'
61
+ get_placement_ideas(url)
62
+ end
63
+ end
@@ -0,0 +1,39 @@
1
+ #!/usr/bin/env ruby
2
+ # Encoding: utf-8
3
+ #
4
+ # Author:: api.dklimkin@gmail.com (Danial Klimkin)
5
+ #
6
+ # Copyright:: Copyright 2012, Google Inc. All Rights Reserved.
7
+ #
8
+ # License:: Licensed under the Apache License, Version 2.0 (the "License");
9
+ # you may not use this file except in compliance with the License.
10
+ # You may obtain a copy of the License at
11
+ #
12
+ # http://www.apache.org/licenses/LICENSE-2.0
13
+ #
14
+ # Unless required by applicable law or agreed to in writing, software
15
+ # distributed under the License is distributed on an "AS IS" BASIS,
16
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
17
+ # implied.
18
+ # See the License for the specific language governing permissions and
19
+ # limitations under the License.
20
+ #
21
+ # Tests the remarketing examples.
22
+
23
+ require 'test/unit'
24
+
25
+ require 'remarketing/add_audience'
26
+ require 'remarketing/add_conversion_tracker'
27
+
28
+ class TestRemarketingV201209 < Test::Unit::TestCase
29
+ def setup
30
+ end
31
+
32
+ def test_add_audience
33
+ add_audience()
34
+ end
35
+
36
+ def test_add_conversion_tracker
37
+ add_conversion_tracker()
38
+ end
39
+ end
@@ -0,0 +1,84 @@
1
+ #!/usr/bin/env ruby
2
+ # Encoding: utf-8
3
+ #
4
+ # Author:: api.dklimkin@gmail.com (Danial Klimkin)
5
+ #
6
+ # Copyright:: Copyright 2012, Google Inc. All Rights Reserved.
7
+ #
8
+ # License:: Licensed under the Apache License, Version 2.0 (the "License");
9
+ # you may not use this file except in compliance with the License.
10
+ # You may obtain a copy of the License at
11
+ #
12
+ # http://www.apache.org/licenses/LICENSE-2.0
13
+ #
14
+ # Unless required by applicable law or agreed to in writing, software
15
+ # distributed under the License is distributed on an "AS IS" BASIS,
16
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
17
+ # implied.
18
+ # See the License for the specific language governing permissions and
19
+ # limitations under the License.
20
+ #
21
+ # Tests the reporting examples.
22
+
23
+ require 'test/unit'
24
+ require 'tempfile'
25
+
26
+ require 'reporting/download_criteria_report'
27
+ require 'reporting/download_criteria_report_with_awql'
28
+ require 'reporting/get_campaign_stats'
29
+ require 'reporting/get_report_fields'
30
+ require 'reporting/parallel_report_download'
31
+
32
+ THREADS = 3
33
+ MAX_RETRIES = 3
34
+ BACKOFF_FACTOR = 3
35
+
36
+ class TestReportingV201209 < Test::Unit::TestCase
37
+ def setup()
38
+ @logger = Logger.new(STDOUT)
39
+ @logger.level = Logger::ERROR
40
+ @adwords = AdwordsApi::Api.new()
41
+ @adwords.logger = @logger
42
+ @utils = UtilsV201209.new(@adwords)
43
+ end
44
+
45
+ def test_download_criteria_report()
46
+ file = Tempfile.new('ruby-examples')
47
+ begin
48
+ file.close()
49
+ download_criteria_report(file.path)
50
+ ensure
51
+ file.unlink()
52
+ end
53
+ end
54
+
55
+ def test_download_criteria_report_with_awql()
56
+ file = Tempfile.new('ruby-examples')
57
+ begin
58
+ file.close()
59
+ download_criteria_report_with_awql(file.path, 'CSV')
60
+ ensure
61
+ file.unlink()
62
+ end
63
+ end
64
+
65
+ def test_get_campaign_stats()
66
+ get_campaign_stats()
67
+ end
68
+
69
+ def test_get_report_fields()
70
+ report_type = 'ACCOUNT_PERFORMANCE_REPORT'
71
+ get_report_fields(report_type)
72
+ end
73
+
74
+ def test_parallel_report_download()
75
+ old_dir = Dir.pwd
76
+ Dir.chdir('/tmp')
77
+ begin
78
+ parallel_report_download()
79
+ ensure
80
+ Dir.chdir(old_dir)
81
+ end
82
+ end
83
+ end
84
+
@@ -0,0 +1,60 @@
1
+ #!/usr/bin/env ruby
2
+ # Encoding: utf-8
3
+ #
4
+ # Author:: api.dklimkin@gmail.com (Danial Klimkin)
5
+ #
6
+ # Copyright:: Copyright 2012, Google Inc. All Rights Reserved.
7
+ #
8
+ # License:: Licensed under the Apache License, Version 2.0 (the "License");
9
+ # you may not use this file except in compliance with the License.
10
+ # You may obtain a copy of the License at
11
+ #
12
+ # http://www.apache.org/licenses/LICENSE-2.0
13
+ #
14
+ # Unless required by applicable law or agreed to in writing, software
15
+ # distributed under the License is distributed on an "AS IS" BASIS,
16
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
17
+ # implied.
18
+ # See the License for the specific language governing permissions and
19
+ # limitations under the License.
20
+ #
21
+ # Tests the targeting examples.
22
+
23
+ require 'test/unit'
24
+
25
+ require 'targeting/add_campaign_targeting_criteria'
26
+ require 'targeting/get_campaign_targeting_criteria'
27
+ require 'targeting/get_targetable_languages_and_carriers'
28
+ require 'targeting/lookup_location'
29
+
30
+ class TestTargetingV201209 < Test::Unit::TestCase
31
+ def setup
32
+ @logger = Logger.new(STDOUT)
33
+ @logger.level = Logger::ERROR
34
+ @adwords = AdwordsApi::Api.new
35
+ @adwords.logger = @logger
36
+ @utils = UtilsV201209.new(@adwords)
37
+ end
38
+
39
+ def test_add_campaign_targeting_criteria
40
+ campaign = @utils.get_campaign()
41
+ assert_not_nil(campaign)
42
+ assert_not_nil(campaign[:id])
43
+ add_campaign_targeting_criteria(campaign[:id])
44
+ end
45
+
46
+ def test_get_campaign_targeting_criteria
47
+ campaign = @utils.get_campaign()
48
+ assert_not_nil(campaign)
49
+ assert_not_nil(campaign[:id])
50
+ get_campaign_targeting_criteria(campaign[:id])
51
+ end
52
+
53
+ def test_get_targetable_languages_and_carriers
54
+ get_targetable_languages_and_carriers()
55
+ end
56
+
57
+ def test_lookup_location
58
+ lookup_location()
59
+ end
60
+ end