當前位置: 首頁>>代碼示例>>Python>>正文


Python GLSecureTemporaryFile.avoid_delete方法代碼示例

本文整理匯總了Python中globaleaks.security.GLSecureTemporaryFile.avoid_delete方法的典型用法代碼示例。如果您正苦於以下問題:Python GLSecureTemporaryFile.avoid_delete方法的具體用法?Python GLSecureTemporaryFile.avoid_delete怎麽用?Python GLSecureTemporaryFile.avoid_delete使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在globaleaks.security.GLSecureTemporaryFile的用法示例。


在下文中一共展示了GLSecureTemporaryFile.avoid_delete方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: get_dummy_file

# 需要導入模塊: from globaleaks.security import GLSecureTemporaryFile [as 別名]
# 或者: from globaleaks.security.GLSecureTemporaryFile import avoid_delete [as 別名]
    def get_dummy_file(self, filename=None, content_type=None, content=None):

        if filename is None:
            filename = ''.join(unichr(x) for x in range(0x400, 0x40A))

        if content_type is None:
            content_type = 'application/octet'

        if content is None:
            content = "ANTANI"

        temporary_file = GLSecureTemporaryFile(GLSetting.tmp_upload_path)

        temporary_file.write(content)
        temporary_file.avoid_delete()

        dummy_file = {
            'body': temporary_file,
            'body_len': len(content),
            'body_filepath': temporary_file.filepath,
            'filename': filename,
            'content_type': content_type,
        }

        return dummy_file
開發者ID:globaleaks,項目名稱:GLBackend-outdated,代碼行數:27,代碼來源:helpers.py

示例2: get_dummy_file

# 需要導入模塊: from globaleaks.security import GLSecureTemporaryFile [as 別名]
# 或者: from globaleaks.security.GLSecureTemporaryFile import avoid_delete [as 別名]
    def get_dummy_file(self, filename=None, content_type=None, content=None):
        if filename is None:
            filename = ''.join(unichr(x) for x in range(0x400, 0x40A))

        if content_type is None:
            content_type = 'application/octet'

        if content is None:
            content = 'LA VEDI LA SUPERCAZZOLA ? PREMATURA ? unicode €'

        temporary_file = GLSecureTemporaryFile(GLSettings.tmp_upload_path)

        temporary_file.write(content)
        temporary_file.avoid_delete()

        dummy_file = {
            'body': temporary_file,
            'body_len': len(content),
            'body_filepath': temporary_file.filepath,
            'filename': filename,
            'content_type': content_type,
            'submission': False
        }

        return dummy_file
開發者ID:corvolino,項目名稱:GlobaLeaks,代碼行數:27,代碼來源:helpers.py

示例3: test_004_temporary_file_lost_key_due_to_eventual_bug_or_reboot

# 需要導入模塊: from globaleaks.security import GLSecureTemporaryFile [as 別名]
# 或者: from globaleaks.security.GLSecureTemporaryFile import avoid_delete [as 別名]
 def test_004_temporary_file_lost_key_due_to_eventual_bug_or_reboot(self):
     a = GLSecureTemporaryFile(GLSetting.tmp_upload_path)
     a.avoid_delete()
     antani = "0123456789" * 10000
     a.write(antani)
     a.close()
     self.assertTrue(os.path.exists(a.filepath))
     os.remove(a.keypath)
     self.assertRaises(IOError, GLSecureFile, a.filepath)
開發者ID:Acidburn0zzz,項目名稱:GLBackend,代碼行數:11,代碼來源:test_security.py

示例4: test_003_temporary_file_avoid_delete

# 需要導入模塊: from globaleaks.security import GLSecureTemporaryFile [as 別名]
# 或者: from globaleaks.security.GLSecureTemporaryFile import avoid_delete [as 別名]
 def test_003_temporary_file_avoid_delete(self):
     a = GLSecureTemporaryFile(GLSetting.tmp_upload_path)
     a.avoid_delete()
     antani = "0123456789" * 10000
     a.write(antani)
     a.close()
     self.assertTrue(os.path.exists(a.filepath))
     b = GLSecureFile(a.filepath)
     self.assertTrue(antani == b.read())
開發者ID:Acidburn0zzz,項目名稱:GLBackend,代碼行數:11,代碼來源:test_security.py

示例5: get_dummy_file

# 需要導入模塊: from globaleaks.security import GLSecureTemporaryFile [as 別名]
# 或者: from globaleaks.security.GLSecureTemporaryFile import avoid_delete [as 別名]
def get_dummy_file(filename=None, content_type=None, content=None):
    filename = ''.join(unichr(x) for x in range(0x400, 0x40A))

    content_type = 'application/octet'

    content = ''.join(unichr(x) for x in range(0x400, 0x40A))

    temporary_file = GLSecureTemporaryFile(GLSettings.tmp_upload_path)

    temporary_file.write(content)
    temporary_file.avoid_delete()

    return {
        'body': temporary_file,
        'body_len': len(content),
        'body_filepath': temporary_file.filepath,
        'filename': filename,
        'content_type': content_type,
        'submission': False
    }
開發者ID:Taipo,項目名稱:GlobaLeaks,代碼行數:22,代碼來源:helpers.py

示例6: test_post

# 需要導入模塊: from globaleaks.security import GLSecureTemporaryFile [as 別名]
# 或者: from globaleaks.security.GLSecureTemporaryFile import avoid_delete [as 別名]
    def test_post(self):

        temporary_file = GLSecureTemporaryFile(GLSetting.tmp_upload_path)
        temporary_file.write("ANTANI")
        temporary_file.avoid_delete()

        request_body = {
            'body': temporary_file,
            'body_len': len("ANTANI"),
            'body_filepath': temporary_file.filepath,
            'filename': 'en.json',
            'content_type': 'application/json'
        }

        handler = self.request({}, role='admin', kwargs={'path': GLSetting.static_path}, body=request_body)

        yield handler.post(lang='en')

        self.assertTrue(isinstance(self.responses, list))
        self.assertEqual(len(self.responses), 1)
        self._handler.validate_message(json.dumps(self.responses[0]), requests.staticFile)
開發者ID:Acidburn0zzz,項目名稱:GLBackend,代碼行數:23,代碼來源:test_admlangfiles.py


注:本文中的globaleaks.security.GLSecureTemporaryFile.avoid_delete方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。