mirror of
https://github.com/gryf/ADFlib.git
synced 2026-02-16 21:25:45 +01:00
Added regtests
This commit is contained in:
112
regtest/Test/undel2.c
Normal file
112
regtest/Test/undel2.c
Normal file
@@ -0,0 +1,112 @@
|
||||
/*
|
||||
* undel2.c
|
||||
*/
|
||||
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include"adflib.h"
|
||||
|
||||
|
||||
void MyVer(char *msg)
|
||||
{
|
||||
fprintf(stderr,"Verbose [%s]\n",msg);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
*
|
||||
*
|
||||
*/
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
struct Device *hd;
|
||||
struct Volume *vol;
|
||||
struct List *list, *cell;
|
||||
struct GenBlock *block;
|
||||
BOOL true = TRUE;
|
||||
struct File *file;
|
||||
unsigned char buf[600];
|
||||
long n;
|
||||
FILE *out;
|
||||
long len;
|
||||
|
||||
adfEnvInitDefault();
|
||||
|
||||
adfChgEnvProp(PR_USEDIRC,&true);
|
||||
|
||||
hd = adfMountDev(argv[1], FALSE);
|
||||
if (!hd) {
|
||||
fprintf(stderr, "can't mount device\n");
|
||||
adfEnvCleanUp(); exit(1);
|
||||
}
|
||||
|
||||
adfDeviceInfo(hd);
|
||||
|
||||
vol = adfMount(hd, 0, FALSE);
|
||||
if (!vol) {
|
||||
adfUnMountDev(hd);
|
||||
fprintf(stderr, "can't mount volume\n");
|
||||
adfEnvCleanUp(); exit(1);
|
||||
}
|
||||
|
||||
cell = list = adfGetDirEnt(vol, vol->curDirPtr);
|
||||
while(cell) {
|
||||
printEntry(cell->content);
|
||||
cell = cell->next;
|
||||
}
|
||||
adfFreeDirList(list);
|
||||
adfVolumeInfo(vol);
|
||||
|
||||
puts("\nremove mod.and.distantcall");
|
||||
adfRemoveEntry(vol,vol->curDirPtr,"mod.and.distantcall");
|
||||
adfVolumeInfo(vol);
|
||||
|
||||
cell = list = adfGetDelEnt(vol);
|
||||
while(cell) {
|
||||
block =(struct GenBlock*) cell->content;
|
||||
printf("%s %d %d %ld\n",block->name,block->type,block->secType,
|
||||
block->sect);
|
||||
cell = cell->next;
|
||||
}
|
||||
adfFreeDelList(list);
|
||||
|
||||
adfCheckEntry(vol,886,0);
|
||||
adfUndelEntry(vol,vol->curDirPtr,886);
|
||||
puts("\nundel mod.and.distantcall");
|
||||
adfVolumeInfo(vol);
|
||||
|
||||
cell = list = adfGetDirEnt(vol, vol->curDirPtr);
|
||||
while(cell) {
|
||||
printEntry(cell->content);
|
||||
cell = cell->next;
|
||||
}
|
||||
adfFreeDirList(list);
|
||||
|
||||
file = adfOpenFile(vol, "mod.and.distantcall","r");
|
||||
if (!file) return 1;
|
||||
out = fopen("mod.distant","wb");
|
||||
if (!out) return 1;
|
||||
|
||||
len = 600;
|
||||
n = adfReadFile(file, len, buf);
|
||||
while(!adfEndOfFile(file)) {
|
||||
fwrite(buf,sizeof(unsigned char),n,out);
|
||||
n = adfReadFile(file, len, buf);
|
||||
}
|
||||
if (n>0)
|
||||
fwrite(buf,sizeof(unsigned char),n,out);
|
||||
|
||||
fclose(out);
|
||||
|
||||
adfCloseFile(file);
|
||||
|
||||
adfUnMount(vol);
|
||||
adfUnMountDev(hd);
|
||||
|
||||
adfEnvCleanUp();
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user