File: live_client_test.py

package info (click to toggle)
python-gdata 2.0.18%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 8,460 kB
  • ctags: 17,143
  • sloc: python: 70,779; ansic: 150; makefile: 27; sh: 3
file content (129 lines) | stat: -rw-r--r-- 3,588 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
#!/usr/bin/env python
#
# Copyright (C) 2010 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

"""Functional Tests for Google Analytics Account Feed and Data Feed.

AnalyticsClientTest: Tests making live requests to Google Analytics API.
"""

__author__ = 'api.nickm@google.com (Nick Mihailovski)'


import unittest
import gdata.client
import gdata.data
import gdata.gauth
import gdata.analytics.client
import gdata.test_config as conf


conf.options.register_option(conf.GA_TABLE_ID)


class AnalyticsClientTest(unittest.TestCase):
  """Tests creating an Account Feed query and making a request to the
  Google Analytics Account Feed."""

  def setUp(self):
    """Creates an AnalyticsClient object."""

    self.client = None
    if conf.options.get_value('runlive') == 'true':
      self.client = gdata.analytics.client.AnalyticsClient()
      self.client.http_client.debug = True

      conf.configure_client(
          self.client,
          'AnalyticsClientTest',
          self.client.auth_service)

  def testAccountFeed(self):
    """Tests if the Account Feed exists."""

    if not conf.options.get_value('runlive') == 'true':
      return
    conf.configure_cache(self.client, 'testAccountFeed')

    account_query = gdata.analytics.client.AccountFeedQuery({
        'max-results': '1'
    })

    feed = self.client.GetAccountFeed(account_query)
    self.assert_(feed.entry is not None)

    properties = [
        'ga:accountId',
        'ga:accountName',
        'ga:profileId',
        'ga:webPropertyId',
        'ga:currency',
        'ga:timezone'
    ]

    entry = feed.entry[0]
    for prop in properties:
      property = entry.GetProperty(prop)
      self.assertEquals(property.name, prop)

  def testDataFeed(self):
    """Tests if the Data Feed exists."""

    start_date = '2008-10-01'
    end_date = '2008-10-02'
    metrics = 'ga:visits'

    if not conf.options.get_value('runlive') == 'true':
      return
    conf.configure_cache(self.client, 'testDataFeed')

    data_query = gdata.analytics.client.DataFeedQuery({
      'ids': conf.options.get_value('table_id'),
      'start-date': start_date,
      'end-date': end_date,
      'metrics' : metrics,
      'max-results': '1'
    })
    feed = self.client.GetDataFeed(data_query)

    self.assert_(feed.entry is not None)
    self.assertEquals(feed.start_date.text, start_date)
    self.assertEquals(feed.end_date.text, end_date)
    self.assertEquals(feed.entry[0].GetMetric(metrics).name, metrics)

  def testManagementFeed(self):
    """Tests of the Management Feed exists."""

    if not conf.options.get_value('runlive') == 'true':
      return
    conf.configure_cache(self.client, 'testManagementFeed')

    account_query = gdata.analytics.client.AccountQuery()
    feed = self.client.GetManagementFeed(account_query)

    self.assert_(feed.entry is not None)

  def tearDown(self):
    """Closes client connection."""
    conf.close_client(self.client)


def suite():
  return conf.build_suite([AnalyticsClientTest])


if __name__ == '__main__':
  unittest.TextTestRunner().run(suite())