summaryrefslogtreecommitdiff
path: root/indra/viewer_components/manager/tests/test_get_settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'indra/viewer_components/manager/tests/test_get_settings.py')
-rw-r--r--indra/viewer_components/manager/tests/test_get_settings.py82
1 files changed, 82 insertions, 0 deletions
diff --git a/indra/viewer_components/manager/tests/test_get_settings.py b/indra/viewer_components/manager/tests/test_get_settings.py
new file mode 100644
index 0000000000..46b779cbd5
--- /dev/null
+++ b/indra/viewer_components/manager/tests/test_get_settings.py
@@ -0,0 +1,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')
+