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
|
# Copyright 2014 Microsoft Corporation
#
# 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.
#
# Requires Python 2.4+ and Openssl 1.0+
#
import glob
import tempfile
import os
from mock import patch
from azurelinuxagent.common.utils import fileutil
from azurelinuxagent.ga.env import MAXIMUM_CACHED_FILES, EnvHandler
from tests.tools import AgentTestCase
class TestEnv(AgentTestCase):
@patch("azurelinuxagent.common.conf.get_lib_dir")
def test_purge_disk_cache(self, mock_conf, *args):
names = [
("Prod", "agentsManifest"),
("Test", "agentsManifest"),
("FauxExtension1", "manifest.xml"),
("FauxExtension2", "manifest.xml"),
("GoalState", "xml"),
("ExtensionsConfig", "xml")
]
env = EnvHandler()
tmp_dir = tempfile.mkdtemp()
mock_conf.return_value = tmp_dir
# write incarnations 1-100
for t in names:
self._create_files(tmp_dir,
t[0],
t[1],
2 * MAXIMUM_CACHED_FILES,
with_sleep=0.001)
# update incarnation 1 with the latest timestamp
for t in names:
f = os.path.join(tmp_dir, '.'.join((t[0], '1', t[1])))
fileutil.write_file(f, "faux content")
# ensure the expected number of files are created
for t in names:
p = os.path.join(tmp_dir, '{0}.*.{1}'.format(*t))
self.assertEqual(2 * MAXIMUM_CACHED_FILES, len(glob.glob(p)))
env.purge_disk_cache()
# ensure the expected number of files remain
for t in names:
p = os.path.join(tmp_dir, '{0}.*.{1}'.format(*t))
incarnation1 = os.path.join(tmp_dir, '{0}.1.{1}'.format(t[0], t[1]))
incarnation2 = os.path.join(tmp_dir, '{0}.2.{1}'.format(t[0], t[1]))
self.assertEqual(MAXIMUM_CACHED_FILES, len(glob.glob(p)))
self.assertTrue(os.path.exists(incarnation1))
self.assertFalse(os.path.exists(incarnation2))
# write incarnation 101
for t in names:
f = os.path.join(tmp_dir, '.'.join((t[0], '101', t[1])))
fileutil.write_file(f, "faux content")
# call to purge should be ignored, since interval has not elapsed
env.purge_disk_cache()
for t in names:
p = os.path.join(tmp_dir, '{0}.*.{1}'.format(*t))
incarnation1 = os.path.join(tmp_dir, '{0}.1.{1}'.format(t[0], t[1]))
self.assertEqual(MAXIMUM_CACHED_FILES + 1, len(glob.glob(p)))
self.assertTrue(os.path.exists(incarnation1))
|