| 
									
										
										
										
											2015-12-15 01:42:53 +00:00
										 |  |  | require 'spec_helper' | 
					
						
							|  |  |  | require 'google/apis/adsense_v1_4' | 
					
						
							|  |  |  | require 'googleauth' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Adsense = Google::Apis::AdsenseV1_4 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | RSpec.describe Google::Apis::AdsenseV1_4, :if => run_integration_tests? do | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   before(:context) do | 
					
						
							|  |  |  |     #WebMock.allow_net_connect! | 
					
						
							|  |  |  |     @adsense = Adsense::AdSenseService.new | 
					
						
							|  |  |  |     #@adsense.authorization = Google::Auth.get_application_default([Adsense::AUTH_ADSENSE]) | 
					
						
							|  |  |  |     #@adsense.authorization.sub = 'cb@travelingnuker.com' | 
					
						
							|  |  |  |     #@adsense.authorization.fetch_access_token! | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it 'should download a report with multiple dimensions' do | 
					
						
							| 
									
										
										
										
											2015-12-18 22:37:21 +00:00
										 |  |  |     pending "Not enabled for test account" | 
					
						
							| 
									
										
										
										
											2015-12-15 01:42:53 +00:00
										 |  |  |     report = @adsense.generate_report( Date.today.to_s, Date.today.to_s, dimension: ["DATE", "AD_UNIT_NAME"] ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     report_header_names = report.headers.map { |h| h.name } | 
					
						
							|  |  |  |     expect(report_header_names).to include('DATE') | 
					
						
							|  |  |  |     expect(report_header_names).to include('AD_UNIT_NAME') | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   after(:context) do | 
					
						
							|  |  |  |     #WebMock.disable_net_connect! | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | end |