blob: f1d1147b1bbdf1e3427c92c58fb2802ba9c5780a (
plain)
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
|
#!/usr/bin/python
# Copyright (c) 2011 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import logging
import pyauto_functional
import pyauto
class ChromeosUpdate(pyauto.PyUITest):
"""Tests for ChromeOS updater and channel changer."""
def testSetReleaseTrack(self):
"""Ensure we can set the device's release track (channel)."""
release_track = self.GetUpdateInfo()['release_track']
for track in ('dev-channel', 'beta-channel', release_track):
self.SetReleaseTrack(track)
self.assertEqual(self.GetUpdateInfo()['release_track'], track)
def testGetUpdateInfo(self):
"""Get some status info about the updater and release track."""
result = self.GetUpdateInfo()
self.assertTrue(result)
logging.debug(result)
if __name__ == '__main__':
pyauto_functional.Main()
|