Add tests from develop

Added tests from develop. The test results need to be modified for 2.0.
This commit is contained in:
Markus Mäkelä
2017-05-26 15:40:40 +03:00
parent ad109408b5
commit d7d4ec29bb
596 changed files with 48543 additions and 0 deletions

View File

@ -0,0 +1,25 @@
#ifndef MAXINFO_FUNC_H
#define MAXINFO_FUNC_H
int create_tcp_socket();
char *get_ip(char *host);
char *build_get_query(char *host, const char *page);
/**
* @brief get_maxinfo does request to Maxinfo service and return response JSON
* @param page retrived info name
* @param Test TestConnection object
* @return response from Maxinfo
*/
char * get_maxinfo(const char *page, TestConnections* Test);
char * read_sc(int sock);
int send_so(int sock, char * data);
static char hexconvtab[] = "0123456789abcdef";
static char* bin2hex(const unsigned char *old, const size_t oldlen);
char * cdc_auth_srt(char * user, char * password);
int setnonblocking(int sock);
int get_x_fl_from_json(char * line, long long int * x1, long long int * fl);
#endif // MAXINFO_FUNC_H