def test_get_resource_data_dir(self): path = xdg.get_data_dir('something') expected_path = os.path.join( os.environ[self.homes['data']], 'http-prompt', 'something') self.assertEqual(path, expected_path) self.assertTrue(os.path.exists(path)) # Make sure we can write a file to the directory with open(os.path.join(path, 'test'), 'wb') as f: f.write(b'hello')
def test_get_app_data_home(self): path = xdg.get_data_dir() expected_path = os.path.join(os.environ[self.homes['data']], 'http-prompt') self.assertEqual(path, expected_path) self.assertTrue(os.path.exists(path)) if sys.platform != 'win32': # Make sure permission for the directory is 700 mask = stat.S_IMODE(os.stat(path).st_mode) self.assertTrue(mask & stat.S_IRWXU) self.assertFalse(mask & stat.S_IRWXG) self.assertFalse(mask & stat.S_IRWXO)