diff options
author | Scott Moser <smoser@ubuntu.com> | 2014-01-23 20:12:02 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2014-01-23 20:12:02 -0500 |
commit | 83087580ace7c392477a6772bb0cb254012c8a4e (patch) | |
tree | 8d18b149a7c180a5e332dbfafca345190952c5b3 /tests/unittests/test_ec2_util.py | |
parent | 5aa7d4ccf984ac296f58fa355bdce17d175dcc7d (diff) | |
parent | e6da32a91c59f33fd72bebc43f8e6beae73fbf39 (diff) | |
download | vyos-cloud-init-83087580ace7c392477a6772bb0cb254012c8a4e.tar.gz vyos-cloud-init-83087580ace7c392477a6772bb0cb254012c8a4e.zip |
Skip retry and continued fetch of userdata when NOT_FOUND
When a 404 http code comes back from the fetching of ec2
data, instead of retrying immediately stop the fetching process
and in the userdata fetching function handle this case as a
special case of no userdata being fetched (an empty string
in this case).
Diffstat (limited to 'tests/unittests/test_ec2_util.py')
-rw-r--r-- | tests/unittests/test_ec2_util.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/unittests/test_ec2_util.py b/tests/unittests/test_ec2_util.py index dd588aca..957dc3f2 100644 --- a/tests/unittests/test_ec2_util.py +++ b/tests/unittests/test_ec2_util.py @@ -34,6 +34,14 @@ class TestEc2Util(helpers.TestCase): self.assertEquals('', userdata) @hp.activate + def test_userdata_fetch_fail_server_not_found(self): + hp.register_uri(hp.GET, + 'http://169.254.169.254/%s/user-data' % (self.VERSION), + status=404) + userdata = eu.get_instance_userdata(self.VERSION) + self.assertEquals('', userdata) + + @hp.activate def test_metadata_fetch_no_keys(self): base_url = 'http://169.254.169.254/%s/meta-data' % (self.VERSION) hp.register_uri(hp.GET, base_url, status=200, |