123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301 |
- """
- Module with tests for files
- """
- # Copyright (c) Jupyter Development Team.
- # Distributed under the terms of the Modified BSD License.
- import os
- from ...tests.base import TestsBase
- from ..files import FilesWriter
- class Testfiles(TestsBase):
- """Contains test functions for files.py"""
- def test_basic_output(self):
- """Is FilesWriter basic output correct?"""
- # Work in a temporary directory.
- with self.create_temp_cwd():
- # Create the resoruces dictionary
- res = {}
- # Create files writer, test output
- writer = FilesWriter()
- writer.write(u'y', res, notebook_name="z")
- # Check the output of the file
- with open('z', 'r') as f:
- output = f.read()
- self.assertEqual(output, u'y')
- def test_ext(self):
- """Does the FilesWriter add the correct extension to the output?"""
- # Work in a temporary directory.
- with self.create_temp_cwd():
- # Create the resoruces dictionary
- res = {'output_extension': '.txt'}
- # Create files writer, test output
- writer = FilesWriter()
- writer.write(u'y', res, notebook_name="z")
- # Check the output of the file
- assert os.path.isfile('z.txt')
- with open('z.txt', 'r') as f:
- output = f.read()
- self.assertEqual(output, u'y')
- def test_extract(self):
- """Can FilesWriter write extracted figures correctly?"""
- # Work in a temporary directory.
- with self.create_temp_cwd():
- # Create the resoruces dictionary
- res = {'outputs': {os.path.join('z_files', 'a'): b'b'}}
- # Create files writer, test output
- writer = FilesWriter()
- writer.write(u'y', res, notebook_name="z")
- # Check the output of the file
- with open('z', 'r') as f:
- output = f.read()
- self.assertEqual(output, u'y')
- # Check the output of the extracted file
- extracted_file_dest = os.path.join('z_files', 'a')
- assert os.path.isfile(extracted_file_dest)
- with open(extracted_file_dest, 'r') as f:
- output = f.read()
- self.assertEqual(output, 'b')
- def test_build_dir(self):
- """Can FilesWriter write to a build dir correctly?"""
- # Work in a temporary directory.
- with self.create_temp_cwd():
- # Create the resoruces dictionary
- res = {'outputs': {os.path.join('z_files', 'a'): b'b'}}
- # Create files writer, test output
- writer = FilesWriter()
- writer.build_directory = u'build'
- writer.write(u'y', res, notebook_name="z")
- # Check the output of the file
- assert os.path.isdir(writer.build_directory)
- dest = os.path.join(writer.build_directory, 'z')
- with open(dest, 'r') as f:
- output = f.read()
- self.assertEqual(output, u'y')
- # Check the output of the extracted file
- extracted_file_dest = os.path.join(writer.build_directory, 'z_files', 'a')
- assert os.path.isfile(extracted_file_dest)
- with open(extracted_file_dest, 'r') as f:
- output = f.read()
- self.assertEqual(output, 'b')
- def test_build_dir_default(self):
- """FilesWriter defaults to input path"""
- with self.create_temp_cwd():
- os.mkdir('sub')
- resources = {
- 'metadata': {'path': 'sub'}
- }
- writer = FilesWriter()
- writer.write(u'content', resources, notebook_name="out")
- dest = os.path.join('sub', 'out')
- assert os.path.isfile(dest)
- with open(dest) as f:
- self.assertEqual(f.read().strip(), 'content')
- def test_links(self):
- """Can the FilesWriter handle linked files correctly?"""
- # Work in a temporary directory.
- with self.create_temp_cwd():
- # Create test file
- os.mkdir('sub')
- with open(os.path.join('sub', 'c'), 'w') as f:
- f.write('d')
- # Create the resoruces dictionary
- res = {}
- # Create files writer, test output
- writer = FilesWriter()
- writer.files = [os.path.join('sub', 'c')]
- writer.build_directory = u'build'
- writer.write(u'y', res, notebook_name="z")
- # Check the output of the file
- assert os.path.isdir(writer.build_directory)
- dest = os.path.join(writer.build_directory, 'z')
- with open(dest, 'r') as f:
- output = f.read()
- self.assertEqual(output, u'y')
- # Check to make sure the linked file was copied
- path = os.path.join(writer.build_directory, 'sub')
- assert os.path.isdir(path)
- dest = os.path.join(path, 'c')
- assert os.path.isfile(dest)
- with open(dest, 'r') as f:
- output = f.read()
- self.assertEqual(output, 'd')
- def test_glob(self):
- """Can the FilesWriter handle globbed files correctly?"""
- # Work in a temporary directory.
- with self.create_temp_cwd():
- # Create test files
- os.mkdir('sub')
- with open(os.path.join('sub', 'c'), 'w') as f:
- f.write('e')
- with open(os.path.join('sub', 'd'), 'w') as f:
- f.write('e')
- # Create the resoruces dictionary
- res = {}
- # Create files writer, test output
- writer = FilesWriter()
- writer.files = ['sub/*']
- writer.build_directory = u'build'
- writer.write(u'y', res, notebook_name="z")
- # Check the output of the file
- assert os.path.isdir(writer.build_directory)
- dest = os.path.join(writer.build_directory, 'z')
- with open(dest, 'r') as f:
- output = f.read()
- self.assertEqual(output, u'y')
- # Check to make sure the globbed files were copied
- path = os.path.join(writer.build_directory, 'sub')
- assert os.path.isdir(path)
- for filename in ['c', 'd']:
- dest = os.path.join(path, filename)
- assert os.path.isfile(dest)
- with open(dest, 'r') as f:
- output = f.read()
- self.assertEqual(output, 'e')
- def test_relpath(self):
- """Can the FilesWriter handle relative paths for linked files correctly?"""
- # Work in a temporary directory.
- with self.create_temp_cwd():
- # Create test file
- os.mkdir('sub')
- with open(os.path.join('sub', 'c'), 'w') as f:
- f.write('d')
- # Create the resoruces dictionary
- res = {}
- # Create files writer, test output
- writer = FilesWriter()
- writer.files = [os.path.join('sub', 'c')]
- writer.build_directory = u'build'
- writer.relpath = 'sub'
- writer.write(u'y', res, notebook_name="z")
- # Check the output of the file
- assert os.path.isdir(writer.build_directory)
- dest = os.path.join(writer.build_directory, 'z')
- with open(dest, 'r') as f:
- output = f.read()
- self.assertEqual(output, u'y')
- # Check to make sure the linked file was copied
- dest = os.path.join(writer.build_directory, 'c')
- assert os.path.isfile(dest)
- with open(dest, 'r') as f:
- output = f.read()
- self.assertEqual(output, 'd')
- def test_relpath_default(self):
- """Is the FilesWriter default relative path correct?"""
- # Work in a temporary directory.
- with self.create_temp_cwd():
- # Create test file
- os.mkdir('sub')
- with open(os.path.join('sub', 'c'), 'w') as f:
- f.write('d')
- # Create the resoruces dictionary
- res = dict(metadata=dict(path="sub"))
- # Create files writer, test output
- writer = FilesWriter()
- writer.files = [os.path.join('sub', 'c')]
- writer.build_directory = u'build'
- writer.write(u'y', res, notebook_name="z")
- # Check the output of the file
- assert os.path.isdir(writer.build_directory)
- dest = os.path.join(writer.build_directory, 'z')
- with open(dest, 'r') as f:
- output = f.read()
- self.assertEqual(output, u'y')
- # Check to make sure the linked file was copied
- dest = os.path.join(writer.build_directory, 'c')
- assert os.path.isfile(dest)
- with open(dest, 'r') as f:
- output = f.read()
- self.assertEqual(output, 'd')
- def test_relpath_precedence(self):
- """Does the FilesWriter relpath option take precedence over the path?"""
- # Work in a temporary directory.
- with self.create_temp_cwd():
- # Create test file
- os.mkdir('sub')
- with open(os.path.join('sub', 'c'), 'w') as f:
- f.write('d')
- # Create the resoruces dictionary
- res = dict(metadata=dict(path="other_sub"))
- # Create files writer, test output
- writer = FilesWriter()
- writer.files = [os.path.join('sub', 'c')]
- writer.build_directory = u'build'
- writer.relpath = 'sub'
- writer.write(u'y', res, notebook_name="z")
- # Check the output of the file
- assert os.path.isdir(writer.build_directory)
- dest = os.path.join(writer.build_directory, 'z')
- with open(dest, 'r') as f:
- output = f.read()
- self.assertEqual(output, u'y')
- # Check to make sure the linked file was copied
- dest = os.path.join(writer.build_directory, 'c')
- assert os.path.isfile(dest)
- with open(dest, 'r') as f:
- output = f.read()
- self.assertEqual(output, 'd')
|