clientcfgtest.c 1.8 KB
Newer Older
J
jiacy-jcy 已提交
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
// The test case to verfy TS-293
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <inttypes.h>
#include <taos.h>
#include "os.h"
#include "taosdef.h"
#include "taoserror.h"
#include "tconfig.h"
#include "tglobal.h"
#include "tulog.h"
#include "tsocket.h"
#include "tutil.h"
extern SGlobalCfg *taosGetConfigOption(const char *option) ;
int main( int argc, char *argv[]){

        printf("start to test\n");

        //case1:
        //Test config firstEp success
        const char config1[128] = "{\"firstEp\":\"BCC-2:6030\",\"debugFlag\":\"135\"}";//input the parameter which want to be configured
        taos_set_config(config1);    //configure the parameter

        SGlobalCfg *cfg ;

        cfg  = taosGetConfigOption("firstEp");//check the option result
        if(cfg->cfgStatus != 3){                         //If cfgStatus is 3,it means configure is success
                printf("config firstEp 'BCC-2:6030'failures!\n");
                exit(1);
        }
        

        cfg  = taosGetConfigOption("debugFlag");//check the option result
        if(cfg->cfgStatus != 3){                         
                printf("config debugFlag '135' failures!\n");
                exit(1);
        }
        
        //case2:
        //Test config only useful at the first time
        //The result is failure
        const char config2[128] = "{\"fqdn\":\"BCC-3\"}";
        taos_set_config(config2);    //configure the parameter


        cfg  = taosGetConfigOption("fqdn");//check the option result
        if(cfg->cfgStatus == 3){                         
                printf("config firstEp to 'BCC-3' failures!\n");
                exit(1);
        }
        else{
                printf("test case success!\n");
                exit(0);
        }
        
        
        return 0 ;



}