|
@@ -11,9 +11,6 @@ envl = 'DX_test'
|
|
|
url = config.URL[envl]
|
|
|
token = config.TOKEN[envl]
|
|
|
|
|
|
-# 生产集群
|
|
|
-class TestSbOcr(unittest.TestCase):
|
|
|
-
|
|
|
def _helper(self, image_path, suffix):
|
|
|
root = Path(__file__).parent
|
|
|
image_path = str(root / image_path)
|
|
@@ -41,17 +38,6 @@ class TestSbOcr(unittest.TestCase):
|
|
|
suffix = '/xxw/schoolcert'
|
|
|
self._helper(image_path, suffix)
|
|
|
|
|
|
- def test_cet(self):
|
|
|
- image_path = './image/cet.jpg'
|
|
|
- suffix = '/cet/cet'
|
|
|
- self._helper(image_path, suffix)
|
|
|
-
|
|
|
- def test_blef(self):
|
|
|
- image_path = './image/blfe.jpg'
|
|
|
- suffix = '/blfe/blfe'
|
|
|
- self._helper(image_path, suffix)
|
|
|
-
|
|
|
-# 测试集群
|
|
|
class TestOcr(unittest.TestCase):
|
|
|
|
|
|
def _helper(self, image_path, suffix):
|
|
@@ -63,31 +49,30 @@ class TestOcr(unittest.TestCase):
|
|
|
|
|
|
def test_bank(self):
|
|
|
image_path = './image/bankcard.jpg'
|
|
|
- suffix = '/yhksbtest/bankcard'
|
|
|
+ suffix = '/yhksb/bankcard' if 'sb' in envl else '/yhksbtest/bankcard'
|
|
|
self._helper(image_path, suffix)
|
|
|
|
|
|
def test_idcard(self):
|
|
|
image_path = './image/idcard.jpg'
|
|
|
- suffix = '/sfzsbtest/idcard'
|
|
|
+ suffix = '/sfzsb/idcard' if 'sb' in envl else '/sfzsbtest/idcard'
|
|
|
self._helper(image_path, suffix)
|
|
|
|
|
|
def test_regbook(self):
|
|
|
image_path = './image/regbook.jpg'
|
|
|
- suffix = '/hkbsbtest/regbook'
|
|
|
+ suffix = '/hkbsb/regbook' if 'sb' in envl else '/hkbsbtest/regbook'
|
|
|
self._helper(image_path, suffix)
|
|
|
|
|
|
def test_schoolcert(self):
|
|
|
image_path = './image/schoolcert.jpg'
|
|
|
- suffix = '/xxwtest/schoolcert'
|
|
|
+ suffix = '/xxw/schoolcert' if 'sb' in envl else '/xxwtest/schoolcert'
|
|
|
self._helper(image_path, suffix)
|
|
|
|
|
|
def test_cet(self):
|
|
|
image_path = './image/cet.jpg'
|
|
|
- suffix = '/cettest/cet'
|
|
|
+ suffix = '/cet/cet' if 'sb' in envl else '/cettest/cet'
|
|
|
self._helper(image_path, suffix)
|
|
|
|
|
|
def test_blef(self):
|
|
|
image_path = './image/blfe.jpg'
|
|
|
- suffix = '/blfetest/blfe'
|
|
|
+ suffix = '/blfe/blfe' if 'sb' in envl else '/blfetest/blfe'
|
|
|
self._helper(image_path, suffix)
|
|
|
-
|