Пример #1
0
class WatchDogAPITest(unittest.TestCase):
    def setUp(self):
        self.conf_file = './fswatch.conf'
        self.config = FSConfig(self.conf_file)
        self.app_key = self.config.app_key()
        self.search_key = self.config.search_key()
        self.baseurl = self.config.base_url()
        self.api = SearchAppApi(self.search_key, self.app_key, self.baseurl)

    @patch('wd_api.SearchAppApi.init_schema')
    def test_mapping(self, *args):
        self.api.init_schema()
        self.api.init_schema.assert_called_once_with()

    @patch('wd_api.SearchAppApi.do_post')
    def test_post(self, *args):
        fname = './testfile.pdf'
        mimetype = "application/pdf"
        modified = datetime.datetime.now()
        owner = "test_user"
        perms = "06444"
        size = 1235
        self.api.do_post(
            fname,
            mimetype,
            owner,
            modified,
            perms,
            size
        )
        self.api.do_post.assert_called_once_with(
            fname, mimetype,
            owner, modified,
            perms, size
        )
Пример #2
0
 def setUp(self):
     self.conf_file = './fswatch.conf'
     self.config = FSConfig(self.conf_file)
     self.app_key = self.config.app_key()
     self.search_key = self.config.search_key()
     self.baseurl = self.config.base_url()
     self.api = SearchAppApi(self.search_key, self.app_key, self.baseurl)
Пример #3
0
class WatchDogConfigTest(unittest.TestCase):
    def setUp(self):
        self.conf_file = 'fswatch.conf'
        self.config = FSConfig(self.conf_file)

    def testdbuser(self):
        self.assertEqual(self.config.dbuser(), 'watchdog')

    def testdbname(self):
        self.assertEqual(self.config.dbname(), 'watchdog')

    def testdbhost(self):
        self.assertEqual(self.config.dbhost(), "localhost")

    def testdbport(self):
        self.assertEqual(self.config.dbport(), '5432')

    def testappkey(self):
        self.assertEqual(self.config.search_key(), "my-search-key")

    def testsearchkey(self):
        self.assertEqual(self.config.app_key(), "my-app-key")
Пример #4
0
import requests
from requests_toolbelt.multipart.encoder import MultipartEncoder

logger = logging.getLogger(__name__)


class SearchAppIndexException(Exception):
    pass

SERVICE_PATHS = {
    'index': '_search/{real_app}/{schema}',
    'mapping': '_search/{app}/_mapping/{schema}'
}

conf_file = './fswatch.conf'
config = FSConfig(conf_file)


class SearchAppApi(object):
    """
    interface to searchApp API endpoint
    assumes:
    an ES search app has been created, app-key, search-user key have been generated
    methods:
    get_auth
    get_index
    do_post
    init_schema
    """
    def __init__(self, search_key, app_key, base_url=None, schema=None):
        if not search_key or app_key:
Пример #5
0
 def setUp(self):
     self.conf_file = 'fswatch.conf'
     self.config = FSConfig(self.conf_file)