summaryrefslogtreecommitdiff
path: root/indra/viewer_components/manager/tests/test_get_settings.py
blob: 46b779cbd5ce2c4e5bea00a753508b7a1a4429c6 (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
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
#!/usr/bin/env python

# $LicenseInfo:firstyear=2016&license=internal$
# 
# Copyright (c) 2016, Linden Research, Inc.
# 
# The following source code is PROPRIETARY AND CONFIDENTIAL. Use of
# this source code is governed by the Linden Lab Source Code Disclosure
# Agreement ("Agreement") previously entered between you and Linden
# Lab. By accessing, using, copying, modifying or distributing this
# software, you acknowledge that you have been informed of your
# obligations under the Agreement and agree to abide by those obligations.
# 
# ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
# WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
# COMPLETENESS OR PERFORMANCE.
# $/LicenseInfo$

"""
@file   test_get_settings.py
@author coyot
@date   2016-06-03
"""

from nose.tools import *
from nose import with_setup

import os
import shutil
import update_manager
import with_setup_args

def get_settings_setup():
    try:
        key = update_manager.get_platform_key()
        settings_dir = os.path.join(update_manager.get_parent_path(key), "user_settings")
        print settings_dir

        #preserve existing settings dir if any
        if os.path.exists(settings_dir):
            old_dir = settings_dir + ".tmp"
            if os.path.exists(old_dir):
                shutil.rmtree(old_dir, ignore_errors = True)
            os.rename(settings_dir, old_dir)  
        os.makedirs(settings_dir)

        #the data subdir of the tests dir that this script is in
        data_dir = os.path.join(os.path.dirname(os.path.realpath(__file__)), "data")
        #the test settings file
        settings_file = os.path.join(data_dir, "settings.xml")
        shutil.copyfile(settings_file, os.path.join(settings_dir, "settings.xml"))

    except Exception, e:
        print "get_settings_setup failed due to: %s" % str(e)
        assert False

    #this is we don't have to rediscover settings_dir for test and teardown
    return [settings_dir], {}
 
def get_settings_teardown(settings_dir):
    try:
        shutil.rmtree(settings_dir, ignore_errors = True)
        #restore previous settings dir if any
        old_dir = settings_dir + ".tmp"
        if os.path.exists(old_dir):
            os.rename(old_dir, settings_dir)
    except:
        #cleanup is best effort
        pass

@with_setup_args.with_setup_args(get_settings_setup, get_settings_teardown)
def test_get_settings(settings_dir):
    key = update_manager.get_platform_key()
    parent = update_manager.get_parent_path(key)
    log_file = update_manager.get_log_file_handle(parent)
    got_settings = update_manager.get_settings(log_file, parent)

    assert got_settings, "test_get_settings failed to find a settings.xml file"

    #test one key just to make sure it parsed
    assert_equal(got_settings['CurrentGrid']['Value'], 'util.agni.lindenlab.com')