test.template 1.1 KB
Newer Older
J
JinHai-CN 已提交
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
'''
Copyright 上海赜睿信息科技有限公司(Zilliz) - All Rights Reserved
Unauthorized copying of this file, via any medium is strictly prohibited.
Proprietary and confidential.
'''

'''
Test Description:

This document is only a template to show how to write a auto-test script

本文档仅仅是个展示如何编写自动化测试脚本的模板

'''

import pytest
from milvus import Milvus


class TestConnection:
    def test_connect_localhost(self):

        """
        TestCase1.1
        Test target: This case is to check if the server can be connected.
        Test method: Call API: milvus.connect to connect local milvus server, ip address: 127.0.0.1 and port: 19530, check the return status
        Expectation: Return status is OK.

        测试目的:本用例测试客户端是否可以与服务器建立连接
        测试方法:调用SDK API: milvus.connect方法连接本地服务器,IP地址:127.0.0.1,端口:19530,检查调用返回状态
        期望结果:返回状态是:OK

        """

        milvus = Milvus()
        milvus.connect(host='127.0.0.1', port='19530')
        assert milvus.connected