Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: chrome/common/extensions/docs/server2/local_file_system_test.py

Issue 10704252: Extensions Docs Server: Internal file system (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed up Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 #!/usr/bin/env python
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 import os
7 import unittest
8
9 from local_file_system import LocalFileSystem
10
11 class LocalFileSystemTest(unittest.TestCase):
12 def setUp(self):
13 self._file_system = LocalFileSystem(os.path.join('test_data',
14 'file_system'))
15
16 def testReadFiles(self):
17 expected = {
18 'test1.txt': 'test1\n',
19 'test2.txt': 'test2\n',
20 'test3.txt': 'test3\n',
21 }
22 self.assertEqual(
23 expected,
24 self._file_system.Read(['test1.txt', 'test2.txt', 'test3.txt']).Get())
25
26 def testListDir(self):
27 expected = ['dir/']
28 for i in range(7):
29 expected.append('file%d.html' % i)
30 self.assertEqual(expected,
31 sorted(self._file_system.Read(['list/']).Get()['list/']))
32
33 if __name__ == '__main__':
34 unittest.main()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698