2020-09-23 Fred Gleason <fredg@paravelsystems.com>

* Added a 'RD_DeletePodcast()' call to the rivwebcapi API.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2020-09-24 14:44:06 -04:00
parent 59d70ff1e7
commit 6081e620ff
9 changed files with 646 additions and 4 deletions

View File

@@ -31,6 +31,7 @@ noinst_PROGRAMS = addcart_test \
createticket_test \
deleteaudio_test \
deletelog_test \
deletepodcast_test \
editcart_test \
editcut_test \
exportcart_test \
@@ -55,7 +56,6 @@ noinst_PROGRAMS = addcart_test \
postimage_test \
postpodcast_test \
postrss_test \
postpodcast_test \
removecart_test \
removecut_test \
removeimage_test \
@@ -96,6 +96,9 @@ deleteaudio_test_LDADD = -lrivwebcapi -lexpat -lcurl -lm
dist_deletelog_test_SOURCES = deletelog_test.c common.c common.h
deletelog_test_LDADD = -lrivwebcapi -lexpat -lcurl -lm
dist_deletepodcast_test_SOURCES = deletepodcast_test.c common.c common.h
deletepodcast_test_LDADD = -lrivwebcapi -lexpat -lcurl -lm
dist_editcart_test_SOURCES = editcart_test.c
editcart_test_LDADD = -lrivwebcapi -lexpat -lcurl -lm
@@ -168,9 +171,6 @@ postpodcast_test_LDADD = -lrivwebcapi -lexpat -lcurl -lm
dist_postrss_test_SOURCES = postrss_test.c
postrss_test_LDADD = -lrivwebcapi -lexpat -lcurl -lm
dist_postpodcast_test_SOURCES = postpodcast_test.c
postpodcast_test_LDADD = -lrivwebcapi -lexpat -lcurl -lm
dist_removecart_test_SOURCES = removecart_test.c
removecart_test_LDADD = -lrivwebcapi -lexpat -lcurl -lm

View File

@@ -0,0 +1,205 @@
/* deletepodcast_test.c
*
* Test the delete podcast library.
*
* (C) Copyright 2020 Fred Gleason <fredg@paravelsystems.com>
*
* 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_createticket.h>
#include <rivwebcapi/rd_getuseragent.h>
#include <rivwebcapi/rd_getversion.h>
#include <rivwebcapi/rd_deletepodcast.h>
int main(int argc,char *argv[])
{
char buf[BUFSIZ];
char *p;
long int cast_id=0;
char *host;
char *user;
char *passwd;
char ticket[41]="";
char user_agent[255]={0};
/* 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 ID number of the RSS podcast item that you want to delete ==> ");
if (fgets(buf,sizeof(buf),stdin) != NULL)
{
cast_id = 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_DeletePodcast( host,
user,
passwd,
ticket,
(unsigned)cast_id,
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 podcast exists! \n");
break;
case 401:
fprintf(stderr, "ERROR: Unauthorized \n");
break;
default:
fprintf(stderr, "Unknown Error occurred ==> %d",result);
}
exit(256);
}
//
// List the Results
//
printf(" Podcast item: %ld was successfully deleted!\n",cast_id);
printf("\n");
// Add test of create_ticket function
int i;
struct rd_ticketinfo *myticket=0;
unsigned 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");
}
user="";
passwd="";
strcpy( ticket,myticket->ticket);
fprintf(stderr, "Ticket was copied - = %s\n",ticket);
//
// Call the function
//
result=RD_DeletePodcast(host,
user,
passwd,
ticket,
(unsigned)cast_id,
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 podcast exists! \n");
break;
case 401:
fprintf(stderr, "ERROR: Unauthorized\n");
break;
default:
fprintf(stderr, "Unknown Error occurred ==> %d",result);
}
exit(256);
}
//
// List the Results
//
printf(" Podcast item: %ld was successfully deleted!\n",cast_id);
printf("\n");
exit(0);
}