sapling/eden/fs/integration/sed_test.py

37 lines
1.2 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
#
# Copyright (c) 2016, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree. An additional grant
# of patent rights can be found in the PATENTS file in the same directory.
from .lib import testcase
import os
import stat
import subprocess
class SedTest(testcase.EdenTestCase):
def test_sed(self):
eden = self.init_git_eden()
filename = os.path.join(eden.mount_path, 'sedme')
with open(filename, 'w') as f:
f.write('foo\n')
before_st = os.lstat(filename)
self.assertTrue(stat.S_ISREG(before_st.st_mode))
subprocess.check_call(['sed', '-i', '-e', 's/foo/bar/', filename])
after_st = os.lstat(filename)
self.assertNotEqual(after_st.st_ino, before_st.st_ino,
msg='renamed file has a new inode number')
self.assertEqual(4, after_st.st_size)
with open(filename, 'r') as f:
file_st = os.fstat(f.fileno())
self.assertEqual(after_st.st_ino, file_st.st_ino)
self.assertEqual('bar\n', f.read())