You've already forked httpie-cli
mirror of
https://github.com/httpie/cli.git
synced 2025-11-27 22:38:54 +02:00
60 lines
2.1 KiB
Python
60 lines
2.1 KiB
Python
import os
|
|
import stat
|
|
import sys
|
|
|
|
from .base import TempAppDirTestCase
|
|
from httpie.prompt import xdg
|
|
|
|
|
|
class TestXDG(TempAppDirTestCase):
|
|
|
|
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)
|
|
|
|
def test_get_app_config_home(self):
|
|
path = xdg.get_config_dir()
|
|
expected_path = os.path.join(os.environ[self.homes['config']],
|
|
'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)
|
|
|
|
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_resource_config_dir(self):
|
|
path = xdg.get_config_dir('something')
|
|
expected_path = os.path.join(
|
|
os.environ[self.homes['config']], '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')
|