mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-19 09:01:18 +02:00
2018-08-30 Fred Gleason <fredg@paravelsystems.com>
* Integrated the 'Rivendell-C-API' [from https://github.com/RadioFreeAsia/rivendell-c-api] in 'apis/rivwebcapi/'. * Added a 'rivendell-webapi' RPM subpackage.
This commit is contained in:
341
apis/rivwebcapi/tests/addcart_test.c
Normal file
341
apis/rivwebcapi/tests/addcart_test.c
Normal file
@@ -0,0 +1,341 @@
|
||||
/* addcart_test.c
|
||||
*
|
||||
* Test the addcart library.
|
||||
*
|
||||
* (C) Copyright 2015 Todd Baker <bakert@rfa.org>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
* published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <rivwebcapi/rd_addcart.h>
|
||||
#include <rivwebcapi/rd_createticket.h>
|
||||
#include <rivwebcapi/rd_removecart.h>
|
||||
|
||||
#include <rivwebcapi/rd_getuseragent.h>
|
||||
#include <rivwebcapi/rd_getversion.h>
|
||||
|
||||
int main(int argc,char *argv[])
|
||||
{
|
||||
struct rd_cart *cart=0;
|
||||
|
||||
char buf[BUFSIZ];
|
||||
char *p;
|
||||
long int cartnum=0;
|
||||
unsigned numrecs;
|
||||
char *host;
|
||||
char *user;
|
||||
char *passwd;
|
||||
char ticket[41]="";
|
||||
char user_agent[255];
|
||||
|
||||
/* Get the Rivendell Host, User and Password if set in env */
|
||||
if (getenv("RIVHOST")!=NULL) {
|
||||
host = getenv("RIVHOST");
|
||||
}
|
||||
else {
|
||||
host="localhost";
|
||||
}
|
||||
|
||||
if (getenv("RIVUSER")!=NULL) {
|
||||
user = getenv("RIVUSER");
|
||||
}
|
||||
else {
|
||||
user="USER";
|
||||
}
|
||||
|
||||
if (getenv("RIVPASS")!=NULL) {
|
||||
passwd = getenv("RIVPASS");
|
||||
}
|
||||
else {
|
||||
passwd = "";
|
||||
}
|
||||
|
||||
printf("Please enter the Cart Number that you want to Add ==> ");
|
||||
if (fgets(buf,sizeof(buf),stdin) != NULL)
|
||||
{
|
||||
cartnum = strtol(buf, &p,10);
|
||||
|
||||
if ( (buf[0] != '\n') &&
|
||||
((*p != '\n') && (*p != '\0')))
|
||||
{
|
||||
fprintf(stderr," Illegal Characters detected! Exiting.\n");
|
||||
exit(0);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Add the User Agent and Version
|
||||
strcat(user_agent,RD_GetUserAgent());
|
||||
strcat(user_agent,RD_GetVersion());
|
||||
strcat(user_agent," (Test Suite) ");
|
||||
|
||||
//
|
||||
// Call the function
|
||||
//
|
||||
int result=RD_AddCart(&cart,
|
||||
host,
|
||||
user,
|
||||
passwd,
|
||||
ticket,
|
||||
"TEST",
|
||||
"audio",
|
||||
(unsigned)cartnum,
|
||||
user_agent,
|
||||
&numrecs);
|
||||
|
||||
if(result<0) {
|
||||
fprintf(stderr,"Something went wrong!\n");
|
||||
exit(256);
|
||||
}
|
||||
|
||||
if ((result< 200 || result > 299) &&
|
||||
(result != 0))
|
||||
{
|
||||
switch(result) {
|
||||
case 400:
|
||||
fprintf(stderr," ERROR: Invalid Parameter for GROUP or TYPE or Cart Exists\n");
|
||||
break;
|
||||
case 403:
|
||||
fprintf(stderr,"ERROR: User Authentification Error! \n");
|
||||
break;
|
||||
case 404:
|
||||
fprintf(stderr, "ERROR: Unauthorized Or Cart out of Range! \n");
|
||||
break;
|
||||
case 500:
|
||||
fprintf(stderr, "ERROR: Unable to Create Cart! \n");
|
||||
break;
|
||||
default:
|
||||
fprintf(stderr, "Unknown Error occurred ==> %d",result);
|
||||
}
|
||||
exit(256);
|
||||
}
|
||||
|
||||
//
|
||||
// List the Results
|
||||
//
|
||||
printf(" Cart Number: %d\n",cart->cart_number);
|
||||
printf(" Cart Type: %d\n",cart->cart_type);
|
||||
printf(" Group Name: %s\n",cart->cart_grp_name);
|
||||
printf(" Cart Title: %s\n",cart->cart_title);
|
||||
printf(" Cart Artist: %s\n",cart->cart_artist);
|
||||
printf(" Cart Album: %s\n",cart->cart_album);
|
||||
printf(" Cart Year: %d\n",cart->cart_year);
|
||||
printf(" Cart Label: %s\n",cart->cart_label);
|
||||
printf(" Cart Client: %s\n",cart->cart_client);
|
||||
printf(" Cart Agency: %s\n",cart->cart_agency);
|
||||
printf(" Cart Publisher: %s\n",cart->cart_publisher);
|
||||
printf(" Cart Composer: %s\n",cart->cart_composer);
|
||||
printf(" Cart User Defined: %s\n",cart->cart_user_defined);
|
||||
printf(" Cart Usage Code: %d\n",cart->cart_usage_code);
|
||||
printf(" Cart Forced Length: %d\n",cart->cart_forced_length);
|
||||
printf(" Cart Average Length: %d\n",cart->cart_average_length);
|
||||
printf(" Cart Length Deviation: %d\n",cart->cart_length_deviation);
|
||||
printf("Cart Average Segue Length: %d\n",cart->cart_average_segue_length);
|
||||
printf(" Cart Average Hook Length: %d\n",cart->cart_average_hook_length);
|
||||
printf(" Cart Cut Quantity: %u\n",cart->cart_cut_quantity);
|
||||
printf(" Cart Last Cut Played: %03u\n",cart->cart_last_cut_played);
|
||||
printf(" Cart Validity: %u\n",cart->cart_validity);
|
||||
printf(" Cart Enforce Length: %d\n",cart->cart_enforce_length);
|
||||
printf(" Cart Asyncronous: %d\n",cart->cart_asyncronous);
|
||||
printf(" Cart Owner: %s\n",cart->cart_owner);
|
||||
printf("Cart Metadata year value = %d\n",cart->cart_metadata_datetime.tm_year);
|
||||
printf("Cart Metadata month value = %d\n",cart->cart_metadata_datetime.tm_mon);
|
||||
printf("Cart Metadata day value = %d\n",cart->cart_metadata_datetime.tm_mday);
|
||||
printf("Cart Metadata wday value = %d\n",cart->cart_metadata_datetime.tm_wday);
|
||||
printf("Cart Metadata hour value = %d\n",cart->cart_metadata_datetime.tm_hour);
|
||||
printf("Cart Metadata min value = %d\n",cart->cart_metadata_datetime.tm_min);
|
||||
printf("Cart Metadata sec value = %d\n",cart->cart_metadata_datetime.tm_sec);
|
||||
printf("Cart Metadata isdst value = %d\n",cart->cart_metadata_datetime.tm_isdst);
|
||||
|
||||
//printf(" Cart Metadata Datetime: %s\n",cart->cart_metadata_datetime);
|
||||
printf("\n");
|
||||
|
||||
free(cart);
|
||||
|
||||
// Add test of create_ticket function
|
||||
|
||||
int i;
|
||||
struct rd_ticketinfo *myticket=0;
|
||||
numrecs=0;
|
||||
|
||||
result = RD_CreateTicket( &myticket,
|
||||
host,
|
||||
user,
|
||||
passwd,
|
||||
user_agent,
|
||||
&numrecs);
|
||||
|
||||
if ((result< 200 || result > 299) &&
|
||||
(result != 0))
|
||||
{
|
||||
switch(result) {
|
||||
case 403:
|
||||
fprintf(stderr," ERROR: Invalid User Information During Create Ticket\n");
|
||||
break;
|
||||
default:
|
||||
fprintf(stderr, "Unknown Error occurred ==> %d\n",result);
|
||||
}
|
||||
exit(256);
|
||||
}
|
||||
|
||||
// We got a ticket created - use it and do the call again
|
||||
//
|
||||
// List the Results
|
||||
//
|
||||
for(i=0;i<numrecs;i++) {
|
||||
printf(" Ticket: %s\n",myticket[i].ticket);
|
||||
printf("Ticket Expire year value = %d\n",myticket->tkt_expiration_datetime.tm_year);
|
||||
printf("Ticket Expire month value = %d\n",myticket->tkt_expiration_datetime.tm_mon);
|
||||
printf("Ticket Expire day value = %d\n",myticket->tkt_expiration_datetime.tm_mday);
|
||||
printf("Ticket Expire wday value = %d\n",myticket->tkt_expiration_datetime.tm_wday);
|
||||
printf("Ticket Expire hour value = %d\n",myticket->tkt_expiration_datetime.tm_hour);
|
||||
printf("Ticket Expire min value = %d\n",myticket->tkt_expiration_datetime.tm_min);
|
||||
printf("Ticket Expire sec value = %d\n",myticket->tkt_expiration_datetime.tm_sec);
|
||||
printf("Ticket Expire isdst value = %d\n",myticket->tkt_expiration_datetime.tm_isdst);
|
||||
printf("\n");
|
||||
strcpy( ticket,myticket[i].ticket);
|
||||
|
||||
}
|
||||
|
||||
|
||||
user="USER";
|
||||
passwd="blah";
|
||||
fprintf(stderr, "Ticket was copied - = %s\n",ticket);
|
||||
//
|
||||
// Call the Remove Cart function
|
||||
// so we can add it again - using the ticket for both
|
||||
result=RD_RemoveCart( host,
|
||||
user,
|
||||
passwd,
|
||||
ticket,
|
||||
(unsigned)cartnum,
|
||||
user_agent);
|
||||
|
||||
if(result<0) {
|
||||
fprintf(stderr,"Something went wrong!\n");
|
||||
exit(256);
|
||||
}
|
||||
|
||||
if ((result< 200 || result > 299) &&
|
||||
(result != 0))
|
||||
{
|
||||
switch(result) {
|
||||
case 404:
|
||||
fprintf(stderr,"ERROR: No Such Cart Exists! \n");
|
||||
break;
|
||||
case 401:
|
||||
fprintf(stderr, "ERROR: Unauthorized Or Cart out of Range! \n");
|
||||
break;
|
||||
default:
|
||||
fprintf(stderr, "Unknown Error occurred ==> %d",result);
|
||||
}
|
||||
/*exit(256);*/
|
||||
}
|
||||
|
||||
//
|
||||
// List the Results
|
||||
//
|
||||
printf(" Cart %ld was successfully deleted!\n",cartnum);
|
||||
printf("\n");
|
||||
|
||||
|
||||
|
||||
result=RD_AddCart(&cart,
|
||||
host,
|
||||
user,
|
||||
passwd,
|
||||
ticket,
|
||||
"TEST",
|
||||
"audio",
|
||||
(unsigned)cartnum,
|
||||
user_agent,
|
||||
&numrecs);
|
||||
|
||||
if(result<0) {
|
||||
fprintf(stderr,"Something went wrong!\n");
|
||||
exit(256);
|
||||
}
|
||||
|
||||
if ((result< 200 || result > 299) &&
|
||||
(result != 0))
|
||||
{
|
||||
switch(result) {
|
||||
case 400:
|
||||
fprintf(stderr," ERROR: Invalid Parameter for GROUP or TYPE");
|
||||
break;
|
||||
case 403:
|
||||
fprintf(stderr,"ERROR: User Authentification Error! \n");
|
||||
break;
|
||||
case 404:
|
||||
fprintf(stderr,"ERROR: No Such Group Exists! \n");
|
||||
break;
|
||||
case 500:
|
||||
fprintf(stderr, "ERROR: Unable to Create Cart! \n");
|
||||
break;
|
||||
case 401:
|
||||
fprintf(stderr, "ERROR: Unauthorized Or Cart out of Range! \n");
|
||||
break;
|
||||
default:
|
||||
fprintf(stderr, "Unknown Error occurred ==> %d",result);
|
||||
}
|
||||
exit(256);
|
||||
}
|
||||
//
|
||||
// List the Results
|
||||
//
|
||||
printf(" Cart Number: %d\n",cart->cart_number);
|
||||
printf(" Cart Type: %d\n",cart->cart_type);
|
||||
printf(" Group Name: %s\n",cart->cart_grp_name);
|
||||
printf(" Cart Title: %s\n",cart->cart_title);
|
||||
printf(" Cart Artist: %s\n",cart->cart_artist);
|
||||
printf(" Cart Album: %s\n",cart->cart_album);
|
||||
printf(" Cart Year: %d\n",cart->cart_year);
|
||||
printf(" Cart Label: %s\n",cart->cart_label);
|
||||
printf(" Cart Client: %s\n",cart->cart_client);
|
||||
printf(" Cart Agency: %s\n",cart->cart_agency);
|
||||
printf(" Cart Publisher: %s\n",cart->cart_publisher);
|
||||
printf(" Cart Composer: %s\n",cart->cart_composer);
|
||||
printf(" Cart User Defined: %s\n",cart->cart_user_defined);
|
||||
printf(" Cart Usage Code: %d\n",cart->cart_usage_code);
|
||||
printf(" Cart Forced Length: %d\n",cart->cart_forced_length);
|
||||
printf(" Cart Average Length: %d\n",cart->cart_average_length);
|
||||
printf(" Cart Length Deviation: %d\n",cart->cart_length_deviation);
|
||||
printf("Cart Average Segue Length: %d\n",cart->cart_average_segue_length);
|
||||
printf(" Cart Average Hook Length: %d\n",cart->cart_average_hook_length);
|
||||
printf(" Cart Cut Quantity: %u\n",cart->cart_cut_quantity);
|
||||
printf(" Cart Last Cut Played: %03u\n",cart->cart_last_cut_played);
|
||||
printf(" Cart Validity: %u\n",cart->cart_validity);
|
||||
printf(" Cart Enforce Length: %d\n",cart->cart_enforce_length);
|
||||
printf(" Cart Asyncronous: %d\n",cart->cart_asyncronous);
|
||||
printf(" Cart Owner: %s\n",cart->cart_owner);
|
||||
printf("Cart Metadata year value = %d\n",cart->cart_metadata_datetime.tm_year);
|
||||
printf("Cart Metadata month value = %d\n",cart->cart_metadata_datetime.tm_mon);
|
||||
printf("Cart Metadata day value = %d\n",cart->cart_metadata_datetime.tm_mday);
|
||||
printf("Cart Metadata wday value = %d\n",cart->cart_metadata_datetime.tm_wday);
|
||||
printf("Cart Metadata hour value = %d\n",cart->cart_metadata_datetime.tm_hour);
|
||||
printf("Cart Metadata min value = %d\n",cart->cart_metadata_datetime.tm_min);
|
||||
printf("Cart Metadata sec value = %d\n",cart->cart_metadata_datetime.tm_sec);
|
||||
printf("Cart Metadata isdst value = %d\n",cart->cart_metadata_datetime.tm_isdst);
|
||||
|
||||
//printf(" Cart Metadata Datetime: %s\n",cart->cart_metadata_datetime);
|
||||
printf("\n");
|
||||
|
||||
free(cart);
|
||||
|
||||
exit(0);
|
||||
}
|
Reference in New Issue
Block a user