-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtests_batch_controller.py
106 lines (82 loc) · 4.43 KB
/
tests_batch_controller.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# coding: utf-8
from __future__ import absolute_import
import os
import sys
import unittest
import warnings
import time
ABSPATH = os.path.abspath(os.path.realpath(os.path.dirname(__file__)) + "/..")
sys.path.append(ABSPATH)
from asposecellscloud.rest import ApiException
from asposecellscloud.apis.cells_api import CellsApi
import AuthUtil
from asposecellscloud.models import *
from asposecellscloud.requests import *
global_api = None
class TestBatchControllerApi(unittest.TestCase):
def setUp(self):
warnings.simplefilter('ignore', ResourceWarning)
global global_api
if global_api is None:
global_api = CellsApi(AuthUtil.GetClientId(),AuthUtil.GetClientSecret(),"v3.0",AuthUtil.GetBaseUrl())
self.api = global_api
def tearDown(self):
pass
def test_post_batch_convert(self):
remote_folder = 'TestData/In'
local_book1 = 'Book1.xlsx'
remote_book1 = 'Book1.xlsx'
local_my_doc = 'myDocument.xlsx'
remote_my_doc = 'myDocument.xlsx'
batchConvertRequestMatchCondition = MatchConditionRequest(regex_pattern= '(^Book)(.+)(xlsx$)' )
batchConvertRequest = BatchConvertRequest(source_folder= remote_folder ,format= 'pdf' ,out_folder= 'OutResult' ,match_condition= batchConvertRequestMatchCondition )
result = AuthUtil.Ready(self.api, local_book1, remote_folder + '/' + remote_book1 , '')
self.assertTrue(len(result.uploaded)>0)
result = AuthUtil.Ready(self.api, local_my_doc, remote_folder + '/' + remote_my_doc , '')
self.assertTrue(len(result.uploaded)>0)
request = PostBatchConvertRequest( batchConvertRequest)
self.api.post_batch_convert(request)
def test_post_batch_protect(self):
remote_folder = 'TestData/In'
local_book1 = 'Book1.xlsx'
remote_book1 = 'Book1.xlsx'
local_my_doc = 'myDocument.xlsx'
remote_my_doc = 'myDocument.xlsx'
batchProtectRequestMatchCondition = MatchConditionRequest(regex_pattern= '(^Book)(.+)(xlsx$)' )
batchProtectRequest = BatchProtectRequest(source_folder= remote_folder ,protection_type= 'All' ,password= '123456' ,out_folder= 'OutResult' ,match_condition= batchProtectRequestMatchCondition )
result = AuthUtil.Ready(self.api, local_book1, remote_folder + '/' + remote_book1 , '')
self.assertTrue(len(result.uploaded)>0)
result = AuthUtil.Ready(self.api, local_my_doc, remote_folder + '/' + remote_my_doc , '')
self.assertTrue(len(result.uploaded)>0)
request = PostBatchProtectRequest( batchProtectRequest)
self.api.post_batch_protect(request)
def test_post_batch_lock(self):
remote_folder = 'TestData/In'
local_book1 = 'Book1.xlsx'
remote_book1 = 'Book1.xlsx'
local_my_doc = 'myDocument.xlsx'
remote_my_doc = 'myDocument.xlsx'
batchLockRequestMatchCondition = MatchConditionRequest(regex_pattern= '(^Book)(.+)(xlsx$)' )
batchLockRequest = BatchLockRequest(source_folder= remote_folder ,password= '123456' ,out_folder= 'OutResult' ,match_condition= batchLockRequestMatchCondition )
result = AuthUtil.Ready(self.api, local_book1, remote_folder + '/' + remote_book1 , '')
self.assertTrue(len(result.uploaded)>0)
result = AuthUtil.Ready(self.api, local_my_doc, remote_folder + '/' + remote_my_doc , '')
self.assertTrue(len(result.uploaded)>0)
request = PostBatchLockRequest( batchLockRequest)
self.api.post_batch_lock(request)
def test_post_batch_unlock(self):
remote_folder = 'TestData/In'
local_book1 = 'Book1.xlsx'
remote_book1 = 'Book1.xlsx'
local_my_doc = 'myDocument.xlsx'
remote_my_doc = 'myDocument.xlsx'
batchLockRequestMatchCondition = MatchConditionRequest(regex_pattern= '(^Book)(.+)(xlsx$)' )
batchLockRequest = BatchLockRequest(source_folder= remote_folder ,password= '123456' ,out_folder= 'OutResult' ,match_condition= batchLockRequestMatchCondition )
result = AuthUtil.Ready(self.api, local_book1, remote_folder + '/' + remote_book1 , '')
self.assertTrue(len(result.uploaded)>0)
result = AuthUtil.Ready(self.api, local_my_doc, remote_folder + '/' + remote_my_doc , '')
self.assertTrue(len(result.uploaded)>0)
request = PostBatchUnlockRequest( batchLockRequest)
self.api.post_batch_unlock(request)
if __name__ == '__main__':
unittest.main()