be more precise in long long int literal specification for ANSI compilers (gcc3 requi...
[platform/upstream/flac.git] / src / test_libFLAC / metadata_manip.c
index 0f495bb..d8e73d9 100644 (file)
@@ -1,5 +1,5 @@
 /* test_libFLAC - Unit tester for libFLAC
- * Copyright (C) 2002  Josh Coalson
+ * Copyright (C) 2002,2003,2004  Josh Coalson
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
 #include "FLAC/assert.h"
 #include "FLAC/file_decoder.h"
 #include "FLAC/metadata.h"
+#include "share/grabbag.h"
 #include <stdio.h>
 #include <stdlib.h> /* for malloc() */
 
+#if defined _MSC_VER || defined __MINGW32__
+#include <sys/utime.h> /* for utime() */
+#include <io.h> /* for chmod() */
+#else
+#include <sys/types.h> /* some flavors of BSD (like OS X) require this to get time_t */
+#include <utime.h> /* for utime() */
+#include <unistd.h> /* for chown(), unlink() */
+#endif
+#include <sys/stat.h> /* for stat(), maybe chmod() */
+
+
 /******************************************************************************
        The general strategy of these tests (for interface levels 1 and 2) is
        to create a dummy FLAC file with a known set of initial metadata
@@ -72,6 +84,16 @@ static FLAC__bool die_ss_(const char *msg, FLAC__Metadata_SimpleIterator *iterat
        return false;
 }
 
+static void *malloc_or_die_(size_t size)
+{
+       void *x = malloc(size);
+       if(0 == x) {
+               fprintf(stderr, "ERROR: out of memory allocating %u bytes\n", (unsigned)size);
+               exit(1);
+       }
+       return x;
+}
+
 /* functions for working with our metadata copy */
 
 static FLAC__bool replace_in_our_metadata_(FLAC__StreamMetadata *block, unsigned position, FLAC__bool copy)
@@ -137,6 +159,202 @@ static void delete_from_our_metadata_(unsigned position)
        }
 }
 
+/*
+ * This wad of functions supports filename- and callback-based chain reading/writing.
+ * Everything up to set_file_stats_() is copied from libFLAC/metadata_iterators.c
+ */
+FLAC__bool open_tempfile_(const char *filename, FILE **tempfile, char **tempfilename)
+{
+       static const char *tempfile_suffix = ".metadata_edit";
+
+       if(0 == (*tempfilename = (char*)malloc(strlen(filename) + strlen(tempfile_suffix) + 1)))
+               return false;
+       strcpy(*tempfilename, filename);
+       strcat(*tempfilename, tempfile_suffix);
+
+       if(0 == (*tempfile = fopen(*tempfilename, "wb")))
+               return false;
+
+       return true;
+}
+
+void cleanup_tempfile_(FILE **tempfile, char **tempfilename)
+{
+       if(0 != *tempfile) {
+               (void)fclose(*tempfile);
+               *tempfile = 0;
+       }
+
+       if(0 != *tempfilename) {
+               (void)unlink(*tempfilename);
+               free(*tempfilename);
+               *tempfilename = 0;
+       }
+}
+
+FLAC__bool transport_tempfile_(const char *filename, FILE **tempfile, char **tempfilename)
+{
+       FLAC__ASSERT(0 != filename);
+       FLAC__ASSERT(0 != tempfile);
+       FLAC__ASSERT(0 != tempfilename);
+       FLAC__ASSERT(0 != *tempfilename);
+
+       if(0 != *tempfile) {
+               (void)fclose(*tempfile);
+               *tempfile = 0;
+       }
+
+#if defined _MSC_VER || defined __MINGW32__
+       if(unlink(filename) < 0) {
+               cleanup_tempfile_(tempfile, tempfilename);
+               return false;
+       }
+#endif
+
+       if(0 != rename(*tempfilename, filename)) {
+               cleanup_tempfile_(tempfile, tempfilename);
+               return false;
+       }
+
+       cleanup_tempfile_(tempfile, tempfilename);
+
+       return true;
+}
+
+FLAC__bool get_file_stats_(const char *filename, struct stat *stats)
+{
+       FLAC__ASSERT(0 != filename);
+       FLAC__ASSERT(0 != stats);
+       return (0 == stat(filename, stats));
+}
+
+void set_file_stats_(const char *filename, struct stat *stats)
+{
+       struct utimbuf srctime;
+
+       FLAC__ASSERT(0 != filename);
+       FLAC__ASSERT(0 != stats);
+
+       srctime.actime = stats->st_atime;
+       srctime.modtime = stats->st_mtime;
+       (void)chmod(filename, stats->st_mode);
+       (void)utime(filename, &srctime);
+#if !defined _MSC_VER && !defined __MINGW32__
+       (void)chown(filename, stats->st_uid, -1);
+       (void)chown(filename, -1, stats->st_gid);
+#endif
+}
+
+#ifdef FLAC__VALGRIND_TESTING
+static size_t chain_write_cb_(const void *ptr, size_t size, size_t nmemb, FLAC__IOHandle handle)
+{
+       FILE *stream = (FILE*)handle;
+       size_t ret = fwrite(ptr, size, nmemb, stream);
+       if(!ferror(stream))
+               fflush(stream);
+       return ret;
+}
+#endif
+
+static int chain_seek_cb_(FLAC__IOHandle handle, FLAC__int64 offset, int whence)
+{
+       long o = (long)offset;
+       FLAC__ASSERT(offset == o);
+       return fseek((FILE*)handle, o, whence);
+}
+
+static FLAC__int64 chain_tell_cb_(FLAC__IOHandle handle)
+{
+       return ftell((FILE*)handle);
+}
+
+static int chain_eof_cb_(FLAC__IOHandle handle)
+{
+       return feof((FILE*)handle);
+}
+
+static FLAC__bool write_chain_(FLAC__Metadata_Chain *chain, FLAC__bool use_padding, FLAC__bool preserve_file_stats, FLAC__bool filename_based, const char *filename)
+{
+       if(filename_based)
+               return FLAC__metadata_chain_write(chain, use_padding, preserve_file_stats);
+       else {
+               FLAC__IOCallbacks callbacks;
+
+               memset(&callbacks, 0, sizeof(callbacks));
+               callbacks.read = (FLAC__IOCallback_Read)fread;
+#ifdef FLAC__VALGRIND_TESTING
+               callbacks.write = chain_write_cb_;
+#else
+               callbacks.write = (FLAC__IOCallback_Write)fwrite;
+#endif
+               callbacks.seek = chain_seek_cb_;
+               callbacks.eof = chain_eof_cb_;
+
+               if(FLAC__metadata_chain_check_if_tempfile_needed(chain, use_padding)) {
+                       struct stat stats;
+                       FILE *file, *tempfile;
+                       char *tempfilename;
+                       if(preserve_file_stats) {
+                               if(!get_file_stats_(filename, &stats))
+                                       return false;
+                       }
+                       if(0 == (file = fopen(filename, "rb")))
+                               return false; /*@@@ chain status still says OK though */
+                       if(!open_tempfile_(filename, &tempfile, &tempfilename)) {
+                               fclose(file);
+                               cleanup_tempfile_(&tempfile, &tempfilename);
+                               return false; /*@@@ chain status still says OK though */
+                       }
+                       if(!FLAC__metadata_chain_write_with_callbacks_and_tempfile(chain, use_padding, (FLAC__IOHandle)file, callbacks, (FLAC__IOHandle)tempfile, callbacks)) {
+                               fclose(file);
+                               fclose(tempfile);
+                               return false;
+                       }
+                       fclose(file);
+                       fclose(tempfile);
+                       file = tempfile = 0;
+                       if(!transport_tempfile_(filename, &tempfile, &tempfilename))
+                               return false;
+                       if(preserve_file_stats)
+                               set_file_stats_(filename, &stats);
+               }
+               else {
+                       FILE *file = fopen(filename, "r+b");
+                       if(0 == file)
+                               return false; /*@@@ chain status still says OK though */
+                       if(!FLAC__metadata_chain_write_with_callbacks(chain, use_padding, (FLAC__IOHandle)file, callbacks))
+                               return false;
+                       fclose(file);
+               }
+       }
+
+       return true;
+}
+
+static FLAC__bool read_chain_(FLAC__Metadata_Chain *chain, const char *filename, FLAC__bool filename_based)
+{
+       if(filename_based)
+               return FLAC__metadata_chain_read(chain, flacfile_);
+       else {
+               FLAC__IOCallbacks callbacks;
+
+               memset(&callbacks, 0, sizeof(callbacks));
+               callbacks.read = (FLAC__IOCallback_Read)fread;
+               callbacks.seek = chain_seek_cb_;
+               callbacks.tell = chain_tell_cb_;
+
+               {
+                       FLAC__bool ret;
+                       FILE *file = fopen(filename, "rb");
+                       if(0 == file)
+                               return false; /*@@@ chain status still says OK though */
+                       ret = FLAC__metadata_chain_read_with_callbacks(chain, (FLAC__IOHandle)file, callbacks);
+                       fclose(file);
+                       return ret;
+               }
+       }
+}
+
 /* function for comparing our metadata to a FLAC__Metadata_Chain */
 
 static FLAC__bool compare_chain_(FLAC__Metadata_Chain *chain, unsigned current_position, FLAC__StreamMetadata *current_block)
@@ -166,7 +384,7 @@ static FLAC__bool compare_chain_(FLAC__Metadata_Chain *chain, unsigned current_p
                        return die_("getting block from iterator");
                }
 
-               if(!compare_block_(our_metadata_.blocks[i], block)) {
+               if(!mutils__compare_block(our_metadata_.blocks[i], block)) {
                        FLAC__metadata_iterator_delete(iterator);
                        return die_("metadata block mismatch");
                }
@@ -187,7 +405,7 @@ static FLAC__bool compare_chain_(FLAC__Metadata_Chain *chain, unsigned current_p
                printf("CURRENT_POSITION... ");
                fflush(stdout);
 
-               if(!compare_block_(our_metadata_.blocks[current_position], current_block))
+               if(!mutils__compare_block(our_metadata_.blocks[current_position], current_block))
                        return die_("metadata block mismatch");
        }
 
@@ -243,7 +461,7 @@ static void decoder_metadata_callback_compare_(const FLAC__FileDecoder *decoder,
                dcd->error_occurred = true;
        }
        else {
-               if(!compare_block_(our_metadata_.blocks[mc_our_block_number_], metadata)) {
+               if(!mutils__compare_block(our_metadata_.blocks[mc_our_block_number_], metadata)) {
                        (void)die_("metadata block mismatch");
                        dcd->error_occurred = true;
                }
@@ -262,7 +480,7 @@ static void decoder_error_callback_(const FLAC__FileDecoder *decoder, FLAC__Stre
 
 static FLAC__bool generate_file_()
 {
-       FLAC__StreamMetadata streaminfo, padding;
+       FLAC__StreamMetadata streaminfo, vorbiscomment, padding;
        FLAC__StreamMetadata *metadata[1];
 
        printf("generating FLAC file for test\n");
@@ -283,22 +501,40 @@ static FLAC__bool generate_file_()
        streaminfo.data.stream_info.total_samples = 0;
        memset(streaminfo.data.stream_info.md5sum, 0, 16);
 
+       {
+               const unsigned vendor_string_length = (unsigned)strlen(FLAC__VENDOR_STRING);
+               vorbiscomment.is_last = false;
+               vorbiscomment.type = FLAC__METADATA_TYPE_VORBIS_COMMENT;
+               vorbiscomment.length = (4 + vendor_string_length) + 4;
+               vorbiscomment.data.vorbis_comment.vendor_string.length = vendor_string_length;
+               vorbiscomment.data.vorbis_comment.vendor_string.entry = malloc_or_die_(vendor_string_length);
+               memcpy(vorbiscomment.data.vorbis_comment.vendor_string.entry, FLAC__VENDOR_STRING, vendor_string_length);
+               vorbiscomment.data.vorbis_comment.num_comments = 0;
+               vorbiscomment.data.vorbis_comment.comments = 0;
+       }
+
        padding.is_last = true;
        padding.type = FLAC__METADATA_TYPE_PADDING;
        padding.length = 1234;
 
        metadata[0] = &padding;
 
-       if(!insert_to_our_metadata_(&streaminfo, 0, /*copy=*/true) || !insert_to_our_metadata_(&padding, 1, /*copy=*/true))
+       if(
+               !insert_to_our_metadata_(&streaminfo, 0, /*copy=*/true) ||
+               !insert_to_our_metadata_(&vorbiscomment, 1, /*copy=*/true) ||
+               !insert_to_our_metadata_(&padding, 2, /*copy=*/true)
+       )
                return die_("priming our metadata");
 
        if(!file_utils__generate_flacfile(flacfile_, 0, 512 * 1024, &streaminfo, metadata, 1))
-               return die_("creating the encoded file"); 
+               return die_("creating the encoded file");
+
+       free(vorbiscomment.data.vorbis_comment.vendor_string.entry);
 
        return true;
 }
 
-static FLAC__bool test_file_(const char *filename, void (*metadata_callback)(const FLAC__FileDecoder *decoder, const FLAC__StreamMetadata *metadata, void *client_data))
+static FLAC__bool test_file_(const char *filename, FLAC__FileDecoderMetadataCallback metadata_callback)
 {
        FLAC__FileDecoder *decoder;
        decoder_client_struct decoder_client_data;
@@ -327,7 +563,7 @@ static FLAC__bool test_file_(const char *filename, void (*metadata_callback)(con
                FLAC__file_decoder_delete(decoder);
                return die_("initializing decoder\n");
        }
-       if(!FLAC__file_decoder_process_whole_file(decoder)) {
+       if(!FLAC__file_decoder_process_until_end_of_file(decoder)) {
                FLAC__file_decoder_finish(decoder);
                FLAC__file_decoder_delete(decoder);
                return die_("decoding file\n");
@@ -348,8 +584,8 @@ static FLAC__bool test_file_(const char *filename, void (*metadata_callback)(con
 
 static FLAC__bool change_stats_(const char *filename, FLAC__bool read_only)
 {
-       if(!file_utils__change_stats(filename, read_only))
-        return die_("during file_utils__change_stats()");
+       if(!grabbag__file_change_stats(filename, read_only))
+               return die_("during grabbag__file_change_stats()");
 
        return true;
 }
@@ -359,7 +595,7 @@ static FLAC__bool remove_file_(const char *filename)
        while(our_metadata_.num_blocks > 0)
                delete_from_our_metadata_(0);
 
-       if(!file_utils__remove_file(filename))
+       if(!grabbag__file_remove_file(filename))
                return die_("removing file");
 
        return true;
@@ -405,6 +641,9 @@ static FLAC__bool test_level_1_()
        FLAC__byte data[1000];
        unsigned our_current_position = 0;
 
+       /* initialize 'data' to avoid Valgrind errors */
+       memset(data, 0, sizeof(data));
+
        printf("\n\n++++++ testing level 1 interface\n");
 
        /************************************************************/
@@ -423,12 +662,12 @@ static FLAC__bool test_level_1_()
        if(0 == (iterator = FLAC__metadata_simple_iterator_new()))
                return die_("FLAC__metadata_simple_iterator_new()");
 
-       if(!FLAC__metadata_simple_iterator_init(iterator, flacfile_, false))
+       if(!FLAC__metadata_simple_iterator_init(iterator, flacfile_, /*read_only=*/false, /*preserve_file_stats=*/false))
                return die_("FLAC__metadata_simple_iterator_init() returned false");
 
        printf("is writable = %u\n", (unsigned)FLAC__metadata_simple_iterator_is_writable(iterator));
        if(FLAC__metadata_simple_iterator_is_writable(iterator))
-               return die_("iterator claims file is writable when it should not be\n");
+               return die_("iterator claims file is writable when tester thinks it should not be; are you running as root?\n");
 
        printf("iterate forwards\n");
 
@@ -453,6 +692,11 @@ static FLAC__bool test_level_1_()
                return die_("mismatch in min_blocksize");
        if(block->data.stream_info.max_blocksize != 576)
                return die_("mismatch in max_blocksize");
+       FLAC__metadata_object_delete(block);
+
+       if(!FLAC__metadata_simple_iterator_next(iterator))
+               return die_("forward iterator ended early");
+       our_current_position++;
 
        if(!FLAC__metadata_simple_iterator_next(iterator))
                return die_("forward iterator ended early");
@@ -461,7 +705,7 @@ static FLAC__bool test_level_1_()
        if(FLAC__metadata_simple_iterator_get_block_type(iterator) != FLAC__METADATA_TYPE_PADDING)
                return die_("expected PADDING type from FLAC__metadata_simple_iterator_get_block_type()");
        if(0 == (block = FLAC__metadata_simple_iterator_get_block(iterator)))
-               return die_("getting block 1");
+               return die_("getting block 2");
        if(block->type != FLAC__METADATA_TYPE_PADDING)
                return die_("expected PADDING type");
        if(!block->is_last)
@@ -469,6 +713,7 @@ static FLAC__bool test_level_1_()
        /* check to see if some basic data matches (c.f. generate_file_()) */
        if(block->length != 1234)
                return die_("bad PADDING length");
+       FLAC__metadata_object_delete(block);
 
        if(FLAC__metadata_simple_iterator_next(iterator))
                return die_("forward iterator returned true but should have returned false");
@@ -476,13 +721,15 @@ static FLAC__bool test_level_1_()
        printf("iterate backwards\n");
        if(!FLAC__metadata_simple_iterator_prev(iterator))
                return die_("reverse iterator ended early");
+       if(!FLAC__metadata_simple_iterator_prev(iterator))
+               return die_("reverse iterator ended early");
        if(FLAC__metadata_simple_iterator_prev(iterator))
                return die_("reverse iterator returned true but should have returned false");
 
        printf("testing FLAC__metadata_simple_iterator_set_block() on read-only file...\n");
 
        if(!FLAC__metadata_simple_iterator_set_block(iterator, (FLAC__StreamMetadata*)99, false))
-               printf("PASSED.  FLAC__metadata_simple_iterator_set_block() returned false like it should\n");
+               printf("OK: FLAC__metadata_simple_iterator_set_block() returned false like it should\n");
        else
                return die_("FLAC__metadata_simple_iterator_set_block() returned true but shouldn't have");
 
@@ -510,41 +757,46 @@ static FLAC__bool test_level_1_()
        if(0 == (iterator = FLAC__metadata_simple_iterator_new()))
                return die_("FLAC__metadata_simple_iterator_new()");
 
-       if(!FLAC__metadata_simple_iterator_init(iterator, flacfile_, /*preserve_file_stats=*/false))
+       if(!FLAC__metadata_simple_iterator_init(iterator, flacfile_, /*read_only=*/false, /*preserve_file_stats=*/false))
                return die_("FLAC__metadata_simple_iterator_init() returned false");
        our_current_position = 0;
 
        printf("is writable = %u\n", (unsigned)FLAC__metadata_simple_iterator_is_writable(iterator));
 
-       printf("[S]P\ttry to write over STREAMINFO block...\n");
+       printf("[S]VP\ttry to write over STREAMINFO block...\n");
        if(!FLAC__metadata_simple_iterator_set_block(iterator, app, false))
                printf("\tFLAC__metadata_simple_iterator_set_block() returned false like it should\n");
        else
                return die_("FLAC__metadata_simple_iterator_set_block() returned true but shouldn't have");
 
-       printf("[S]P\tnext\n");
+       printf("[S]VP\tnext\n");
+       if(!FLAC__metadata_simple_iterator_next(iterator))
+               return die_("iterator ended early\n");
+       our_current_position++;
+
+       printf("S[V]P\tnext\n");
        if(!FLAC__metadata_simple_iterator_next(iterator))
                return die_("iterator ended early\n");
        our_current_position++;
 
-       printf("S[P]\tinsert PADDING after, don't expand into padding\n");
+       printf("SV[P]\tinsert PADDING after, don't expand into padding\n");
        padding->length = 25;
        if(!FLAC__metadata_simple_iterator_insert_block_after(iterator, padding, false))
                return die_ss_("FLAC__metadata_simple_iterator_insert_block_after(iterator, padding, false)", iterator);
        if(!insert_to_our_metadata_(padding, ++our_current_position, /*copy=*/true))
                return false;
 
-       printf("SP[P]\tprev\n");
+       printf("SVP[P]\tprev\n");
        if(!FLAC__metadata_simple_iterator_prev(iterator))
                return die_("iterator ended early\n");
        our_current_position--;
 
-       printf("S[P]P\tprev\n");
+       printf("SV[P]P\tprev\n");
        if(!FLAC__metadata_simple_iterator_prev(iterator))
                return die_("iterator ended early\n");
        our_current_position--;
 
-       printf("[S]PP\tinsert PADDING after, don't expand into padding\n");
+       printf("S[V]PP\tinsert PADDING after, don't expand into padding\n");
        padding->length = 30;
        if(!FLAC__metadata_simple_iterator_insert_block_after(iterator, padding, false))
                return die_ss_("FLAC__metadata_simple_iterator_insert_block_after(iterator, padding, false)", iterator);
@@ -553,35 +805,45 @@ static FLAC__bool test_level_1_()
 
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
-       
-       printf("S[P]PP\tprev\n");
+
+       printf("SV[P]PP\tprev\n");
+       if(!FLAC__metadata_simple_iterator_prev(iterator))
+               return die_("iterator ended early\n");
+       our_current_position--;
+
+       printf("S[V]PPP\tprev\n");
        if(!FLAC__metadata_simple_iterator_prev(iterator))
                return die_("iterator ended early\n");
        our_current_position--;
 
-       printf("[S]PPP\tdelete (STREAMINFO block), must fail\n");
+       printf("[S]VPPP\tdelete (STREAMINFO block), must fail\n");
        if(FLAC__metadata_simple_iterator_delete_block(iterator, false))
                return die_ss_("FLAC__metadata_simple_iterator_delete_block(iterator, false) should have returned false", iterator);
 
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("[S]PPP\tnext\n");
+       printf("[S]VPPP\tnext\n");
+       if(!FLAC__metadata_simple_iterator_next(iterator))
+               return die_("iterator ended early\n");
+       our_current_position++;
+
+       printf("S[V]PPP\tnext\n");
        if(!FLAC__metadata_simple_iterator_next(iterator))
                return die_("iterator ended early\n");
        our_current_position++;
 
-       printf("S[P]PP\tdelete (middle block), replace with padding\n");
+       printf("SV[P]PP\tdelete (middle block), replace with padding\n");
        if(!FLAC__metadata_simple_iterator_delete_block(iterator, true))
                return die_ss_("FLAC__metadata_simple_iterator_delete_block(iterator, true)", iterator);
        our_current_position--;
 
-       printf("[S]PPP\tnext\n");
+       printf("S[V]PPP\tnext\n");
        if(!FLAC__metadata_simple_iterator_next(iterator))
                return die_("iterator ended early\n");
        our_current_position++;
 
-       printf("S[P]PP\tdelete (middle block), don't replace with padding\n");
+       printf("SV[P]PP\tdelete (middle block), don't replace with padding\n");
        if(!FLAC__metadata_simple_iterator_delete_block(iterator, false))
                return die_ss_("FLAC__metadata_simple_iterator_delete_block(iterator, false)", iterator);
        delete_from_our_metadata_(our_current_position--);
@@ -589,17 +851,17 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("[S]PP\tnext\n");
+       printf("S[V]PP\tnext\n");
        if(!FLAC__metadata_simple_iterator_next(iterator))
                return die_("iterator ended early\n");
        our_current_position++;
 
-       printf("S[P]P\tnext\n");
+       printf("SV[P]P\tnext\n");
        if(!FLAC__metadata_simple_iterator_next(iterator))
                return die_("iterator ended early\n");
        our_current_position++;
 
-       printf("SP[P]\tdelete (last block), replace with padding\n");
+       printf("SVP[P]\tdelete (last block), replace with padding\n");
        if(!FLAC__metadata_simple_iterator_delete_block(iterator, true))
                return die_ss_("FLAC__metadata_simple_iterator_delete_block(iterator, false)", iterator);
        our_current_position--;
@@ -607,12 +869,12 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("S[P]P\tnext\n");
+       printf("SV[P]P\tnext\n");
        if(!FLAC__metadata_simple_iterator_next(iterator))
                return die_("iterator ended early\n");
        our_current_position++;
 
-       printf("SP[P]\tdelete (last block), don't replace with padding\n");
+       printf("SVP[P]\tdelete (last block), don't replace with padding\n");
        if(!FLAC__metadata_simple_iterator_delete_block(iterator, false))
                return die_ss_("FLAC__metadata_simple_iterator_delete_block(iterator, false)", iterator);
        delete_from_our_metadata_(our_current_position--);
@@ -620,12 +882,17 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("S[P]\tprev\n");
+       printf("SV[P]\tprev\n");
+       if(!FLAC__metadata_simple_iterator_prev(iterator))
+               return die_("iterator ended early\n");
+       our_current_position--;
+
+       printf("S[V]P\tprev\n");
        if(!FLAC__metadata_simple_iterator_prev(iterator))
                return die_("iterator ended early\n");
        our_current_position--;
 
-       printf("[S]P\tset STREAMINFO (change sample rate)\n");
+       printf("[S]VP\tset STREAMINFO (change sample rate)\n");
        FLAC__ASSERT(our_current_position == 0);
        block = FLAC__metadata_simple_iterator_get_block(iterator);
        block->data.stream_info.sample_rate = 32000;
@@ -638,7 +905,12 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("[S]P\tinsert APPLICATION after, expand into padding of exceeding size\n");
+       printf("[S]VP\tnext\n");
+       if(!FLAC__metadata_simple_iterator_next(iterator))
+               return die_("iterator ended early\n");
+       our_current_position++;
+
+       printf("S[V]P\tinsert APPLICATION after, expand into padding of exceeding size\n");
        app->data.application.id[0] = 'e'; /* twiddle the id so that our comparison doesn't miss transposition */
        if(!FLAC__metadata_simple_iterator_insert_block_after(iterator, app, true))
                return die_ss_("FLAC__metadata_simple_iterator_insert_block_after(iterator, app, true)", iterator);
@@ -649,12 +921,12 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("S[A]P\tnext\n");
+       printf("SV[A]P\tnext\n");
        if(!FLAC__metadata_simple_iterator_next(iterator))
                return die_("iterator ended early\n");
        our_current_position++;
 
-       printf("SA[P]\tset APPLICATION, expand into padding of exceeding size\n");
+       printf("SVA[P]\tset APPLICATION, expand into padding of exceeding size\n");
        app->data.application.id[0] = 'f'; /* twiddle the id */
        if(!FLAC__metadata_simple_iterator_set_block(iterator, app, true))
                return die_ss_("FLAC__metadata_simple_iterator_set_block(iterator, app, true)", iterator);
@@ -665,7 +937,7 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("SA[A]P\tset APPLICATION (grow), don't expand into padding\n");
+       printf("SVA[A]P\tset APPLICATION (grow), don't expand into padding\n");
        app->data.application.id[0] = 'g'; /* twiddle the id */
        if(!FLAC__metadata_object_application_set_data(app, data, sizeof(data), true))
                return die_("setting APPLICATION data");
@@ -677,7 +949,7 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("SA[A]P\tset APPLICATION (shrink), don't fill in with padding\n");
+       printf("SVA[A]P\tset APPLICATION (shrink), don't fill in with padding\n");
        app->data.application.id[0] = 'h'; /* twiddle the id */
        if(!FLAC__metadata_object_application_set_data(app, data, 12, true))
                return die_("setting APPLICATION data");
@@ -689,7 +961,7 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("SA[A]P\tset APPLICATION (grow), expand into padding of exceeding size\n");
+       printf("SVA[A]P\tset APPLICATION (grow), expand into padding of exceeding size\n");
        app->data.application.id[0] = 'i'; /* twiddle the id */
        if(!FLAC__metadata_object_application_set_data(app, data, sizeof(data), true))
                return die_("setting APPLICATION data");
@@ -702,7 +974,7 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("SA[A]P\tset APPLICATION (shrink), fill in with padding\n");
+       printf("SVA[A]P\tset APPLICATION (shrink), fill in with padding\n");
        app->data.application.id[0] = 'j'; /* twiddle the id */
        if(!FLAC__metadata_object_application_set_data(app, data, 23, true))
                return die_("setting APPLICATION data");
@@ -717,17 +989,17 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("SA[A]PP\tnext\n");
+       printf("SVA[A]PP\tnext\n");
        if(!FLAC__metadata_simple_iterator_next(iterator))
                return die_("iterator ended early\n");
        our_current_position++;
 
-       printf("SAA[P]P\tnext\n");
+       printf("SVAA[P]P\tnext\n");
        if(!FLAC__metadata_simple_iterator_next(iterator))
                return die_("iterator ended early\n");
        our_current_position++;
 
-       printf("SAAP[P]\tset PADDING (shrink), don't fill in with padding\n");
+       printf("SVAAP[P]\tset PADDING (shrink), don't fill in with padding\n");
        padding->length = 5;
        if(!replace_in_our_metadata_(padding, our_current_position, /*copy=*/true))
                return die_("copying object");
@@ -737,7 +1009,7 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("SAAP[P]\tset APPLICATION (grow)\n");
+       printf("SVAAP[P]\tset APPLICATION (grow)\n");
        app->data.application.id[0] = 'k'; /* twiddle the id */
        if(!replace_in_our_metadata_(app, our_current_position, /*copy=*/true))
                return die_("copying object");
@@ -747,7 +1019,7 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("SAAP[A]\tset PADDING (equal)\n");
+       printf("SVAAP[A]\tset PADDING (equal)\n");
        padding->length = 27;
        if(!replace_in_our_metadata_(padding, our_current_position, /*copy=*/true))
                return die_("copying object");
@@ -757,12 +1029,12 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("SAAP[P]\tprev\n");
+       printf("SVAAP[P]\tprev\n");
        if(!FLAC__metadata_simple_iterator_prev(iterator))
                return die_("iterator ended early\n");
        our_current_position--;
 
-       printf("SAA[P]P\tdelete (middle block), don't replace with padding\n");
+       printf("SVAA[P]P\tdelete (middle block), don't replace with padding\n");
        if(!FLAC__metadata_simple_iterator_delete_block(iterator, false))
                return die_ss_("FLAC__metadata_simple_iterator_delete_block(iterator, false)", iterator);
        delete_from_our_metadata_(our_current_position--);
@@ -770,7 +1042,7 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("SA[A]P\tdelete (middle block), don't replace with padding\n");
+       printf("SVA[A]P\tdelete (middle block), don't replace with padding\n");
        if(!FLAC__metadata_simple_iterator_delete_block(iterator, false))
                return die_ss_("FLAC__metadata_simple_iterator_delete_block(iterator, false)", iterator);
        delete_from_our_metadata_(our_current_position--);
@@ -778,12 +1050,12 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("S[A]P\tnext\n");
+       printf("SV[A]P\tnext\n");
        if(!FLAC__metadata_simple_iterator_next(iterator))
                return die_("iterator ended early\n");
        our_current_position++;
 
-       printf("SA[P]\tinsert PADDING after\n");
+       printf("SVA[P]\tinsert PADDING after\n");
        padding->length = 5;
        if(!FLAC__metadata_simple_iterator_insert_block_after(iterator, padding, false))
                return die_ss_("FLAC__metadata_simple_iterator_insert_block_after(iterator, padding, false)", iterator);
@@ -793,17 +1065,17 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("SAP[P]\tprev\n");
+       printf("SVAP[P]\tprev\n");
        if(!FLAC__metadata_simple_iterator_prev(iterator))
                return die_("iterator ended early\n");
        our_current_position--;
 
-       printf("SA[P]P\tprev\n");
+       printf("SVA[P]P\tprev\n");
        if(!FLAC__metadata_simple_iterator_prev(iterator))
                return die_("iterator ended early\n");
        our_current_position--;
 
-       printf("S[A]PP\tset APPLICATION (grow), try to expand into padding which is too small\n");
+       printf("SV[A]PP\tset APPLICATION (grow), try to expand into padding which is too small\n");
        if(!FLAC__metadata_object_application_set_data(app, data, 32, true))
                return die_("setting APPLICATION data");
        if(!replace_in_our_metadata_(app, our_current_position, /*copy=*/true))
@@ -814,7 +1086,7 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("S[A]PP\tset APPLICATION (grow), try to expand into padding which is 'close' but still too small\n");
+       printf("SV[A]PP\tset APPLICATION (grow), try to expand into padding which is 'close' but still too small\n");
        if(!FLAC__metadata_object_application_set_data(app, data, 60, true))
                return die_("setting APPLICATION data");
        if(!replace_in_our_metadata_(app, our_current_position, /*copy=*/true))
@@ -825,7 +1097,7 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("S[A]PP\tset APPLICATION (grow), expand into padding which will leave 0-length pad\n");
+       printf("SV[A]PP\tset APPLICATION (grow), expand into padding which will leave 0-length pad\n");
        if(!FLAC__metadata_object_application_set_data(app, data, 87, true))
                return die_("setting APPLICATION data");
        if(!replace_in_our_metadata_(app, our_current_position, /*copy=*/true))
@@ -837,7 +1109,7 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("S[A]PP\tset APPLICATION (grow), expand into padding which is exactly consumed\n");
+       printf("SV[A]PP\tset APPLICATION (grow), expand into padding which is exactly consumed\n");
        if(!FLAC__metadata_object_application_set_data(app, data, 91, true))
                return die_("setting APPLICATION data");
        if(!replace_in_our_metadata_(app, our_current_position, /*copy=*/true))
@@ -849,7 +1121,7 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("S[A]P\tset APPLICATION (grow), expand into padding which is exactly consumed\n");
+       printf("SV[A]P\tset APPLICATION (grow), expand into padding which is exactly consumed\n");
        if(!FLAC__metadata_object_application_set_data(app, data, 100, true))
                return die_("setting APPLICATION data");
        if(!replace_in_our_metadata_(app, our_current_position, /*copy=*/true))
@@ -862,7 +1134,7 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("S[A]\tset PADDING (equal size)\n");
+       printf("SV[A]\tset PADDING (equal size)\n");
        padding->length = app->length;
        if(!replace_in_our_metadata_(padding, our_current_position, /*copy=*/true))
                return die_("copying object");
@@ -872,7 +1144,7 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("S[P]\tinsert PADDING after\n");
+       printf("SV[P]\tinsert PADDING after\n");
        if(!FLAC__metadata_simple_iterator_insert_block_after(iterator, padding, false))
                return die_ss_("FLAC__metadata_simple_iterator_insert_block_after(iterator, padding, false)", iterator);
        if(!insert_to_our_metadata_(padding, ++our_current_position, /*copy=*/true))
@@ -881,7 +1153,7 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("SP[P]\tinsert PADDING after\n");
+       printf("SVP[P]\tinsert PADDING after\n");
        padding->length = 5;
        if(!FLAC__metadata_simple_iterator_insert_block_after(iterator, padding, false))
                return die_ss_("FLAC__metadata_simple_iterator_insert_block_after(iterator, padding, false)", iterator);
@@ -891,22 +1163,22 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("SPP[P]\tprev\n");
+       printf("SVPP[P]\tprev\n");
        if(!FLAC__metadata_simple_iterator_prev(iterator))
                return die_("iterator ended early\n");
        our_current_position--;
 
-       printf("SP[P]P\tprev\n");
+       printf("SVP[P]P\tprev\n");
        if(!FLAC__metadata_simple_iterator_prev(iterator))
                return die_("iterator ended early\n");
        our_current_position--;
 
-       printf("S[P]PP\tprev\n");
+       printf("SV[P]PP\tprev\n");
        if(!FLAC__metadata_simple_iterator_prev(iterator))
                return die_("iterator ended early\n");
        our_current_position--;
 
-       printf("[S]PPP\tinsert APPLICATION after, try to expand into padding which is too small\n");
+       printf("S[V]PPP\tinsert APPLICATION after, try to expand into padding which is too small\n");
        if(!FLAC__metadata_object_application_set_data(app, data, 101, true))
                return die_("setting APPLICATION data");
        if(!insert_to_our_metadata_(app, ++our_current_position, /*copy=*/true))
@@ -917,7 +1189,7 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("S[A]PPP\tdelete (middle block), don't replace with padding\n");
+       printf("SV[A]PPP\tdelete (middle block), don't replace with padding\n");
        if(!FLAC__metadata_simple_iterator_delete_block(iterator, false))
                return die_ss_("FLAC__metadata_simple_iterator_delete_block(iterator, false)", iterator);
        delete_from_our_metadata_(our_current_position--);
@@ -925,7 +1197,7 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("[S]PPP\tinsert APPLICATION after, try to expand into padding which is 'close' but still too small\n");
+       printf("S[V]PPP\tinsert APPLICATION after, try to expand into padding which is 'close' but still too small\n");
        if(!FLAC__metadata_object_application_set_data(app, data, 97, true))
                return die_("setting APPLICATION data");
        if(!insert_to_our_metadata_(app, ++our_current_position, /*copy=*/true))
@@ -936,7 +1208,7 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("S[A]PPP\tdelete (middle block), don't replace with padding\n");
+       printf("SV[A]PPP\tdelete (middle block), don't replace with padding\n");
        if(!FLAC__metadata_simple_iterator_delete_block(iterator, false))
                return die_ss_("FLAC__metadata_simple_iterator_delete_block(iterator, false)", iterator);
        delete_from_our_metadata_(our_current_position--);
@@ -944,7 +1216,7 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("[S]PPP\tinsert APPLICATION after, expand into padding which is exactly consumed\n");
+       printf("S[V]PPP\tinsert APPLICATION after, expand into padding which is exactly consumed\n");
        if(!FLAC__metadata_object_application_set_data(app, data, 100, true))
                return die_("setting APPLICATION data");
        if(!insert_to_our_metadata_(app, ++our_current_position, /*copy=*/true))
@@ -956,7 +1228,7 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("S[A]PP\tdelete (middle block), don't replace with padding\n");
+       printf("SV[A]PP\tdelete (middle block), don't replace with padding\n");
        if(!FLAC__metadata_simple_iterator_delete_block(iterator, false))
                return die_ss_("FLAC__metadata_simple_iterator_delete_block(iterator, false)", iterator);
        delete_from_our_metadata_(our_current_position--);
@@ -964,7 +1236,7 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("[S]PP\tinsert APPLICATION after, expand into padding which will leave 0-length pad\n");
+       printf("S[V]PP\tinsert APPLICATION after, expand into padding which will leave 0-length pad\n");
        if(!FLAC__metadata_object_application_set_data(app, data, 96, true))
                return die_("setting APPLICATION data");
        if(!insert_to_our_metadata_(app, ++our_current_position, /*copy=*/true))
@@ -976,7 +1248,7 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("S[A]PP\tdelete (middle block), don't replace with padding\n");
+       printf("SV[A]PP\tdelete (middle block), don't replace with padding\n");
        if(!FLAC__metadata_simple_iterator_delete_block(iterator, false))
                return die_ss_("FLAC__metadata_simple_iterator_delete_block(iterator, false)", iterator);
        delete_from_our_metadata_(our_current_position--);
@@ -984,12 +1256,12 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("[S]PP\tnext\n");
+       printf("S[V]PP\tnext\n");
        if(!FLAC__metadata_simple_iterator_next(iterator))
                return die_("iterator ended early\n");
        our_current_position++;
 
-       printf("S[P]P\tdelete (middle block), don't replace with padding\n");
+       printf("SV[P]P\tdelete (middle block), don't replace with padding\n");
        if(!FLAC__metadata_simple_iterator_delete_block(iterator, false))
                return die_ss_("FLAC__metadata_simple_iterator_delete_block(iterator, false)", iterator);
        delete_from_our_metadata_(our_current_position--);
@@ -997,7 +1269,7 @@ static FLAC__bool test_level_1_()
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("[S]P\tinsert APPLICATION after, expand into padding which is exactly consumed\n");
+       printf("S[V]P\tinsert APPLICATION after, expand into padding which is exactly consumed\n");
        if(!FLAC__metadata_object_application_set_data(app, data, 1, true))
                return die_("setting APPLICATION data");
        if(!insert_to_our_metadata_(app, ++our_current_position, /*copy=*/true))
@@ -1022,7 +1294,7 @@ static FLAC__bool test_level_1_()
        return true;
 }
 
-static FLAC__bool test_level_2_()
+static FLAC__bool test_level_2_(FLAC__bool filename_based)
 {
        FLAC__Metadata_Iterator *iterator;
        FLAC__Metadata_Chain *chain;
@@ -1030,7 +1302,10 @@ static FLAC__bool test_level_2_()
        FLAC__byte data[2000];
        unsigned our_current_position;
 
-       printf("\n\n++++++ testing level 2 interface\n");
+       /* initialize 'data' to avoid Valgrind errors */
+       memset(data, 0, sizeof(data));
+
+       printf("\n\n++++++ testing level 2 interface (%s-based)\n", filename_based? "filename":"callback");
 
        printf("generate read-only file\n");
 
@@ -1047,10 +1322,10 @@ static FLAC__bool test_level_2_()
 
        printf("read chain\n");
 
-       if(!FLAC__metadata_chain_read(chain, flacfile_))
+       if(!read_chain_(chain, flacfile_, filename_based))
                return die_c_("reading chain", FLAC__metadata_chain_status(chain));
 
-       printf("[S]P\ttest initial metadata\n");
+       printf("[S]VP\ttest initial metadata\n");
 
        if(!compare_chain_(chain, 0, 0))
                return false;
@@ -1075,25 +1350,30 @@ static FLAC__bool test_level_2_()
 
        FLAC__ASSERT(block->type == FLAC__METADATA_TYPE_STREAMINFO);
 
-       printf("[S]P\tmodify STREAMINFO, write\n");
+       printf("[S]VP\tmodify STREAMINFO, write\n");
 
        block->data.stream_info.sample_rate = 32000;
        if(!replace_in_our_metadata_(block, our_current_position, /*copy=*/true))
                return die_("copying object");
 
-       if(!FLAC__metadata_chain_write(chain, /*use_padding=*/false, /*preserve_file_stats=*/true))
+       if(!write_chain_(chain, /*use_padding=*/false, /*preserve_file_stats=*/true, filename_based, flacfile_))
                return die_c_("during FLAC__metadata_chain_write(chain, false, true)", FLAC__metadata_chain_status(chain));
        if(!compare_chain_(chain, our_current_position, FLAC__metadata_iterator_get_block(iterator)))
                return false;
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("[S]P\tnext\n");
+       printf("[S]VP\tnext\n");
        if(!FLAC__metadata_iterator_next(iterator))
                return die_("iterator ended early\n");
        our_current_position++;
 
-       printf("S[P]\treplace PADDING with identical-size APPLICATION\n");
+       printf("S[V]P\tnext\n");
+       if(!FLAC__metadata_iterator_next(iterator))
+               return die_("iterator ended early\n");
+       our_current_position++;
+
+       printf("SV[P]\treplace PADDING with identical-size APPLICATION\n");
        if(0 == (block = FLAC__metadata_iterator_get_block(iterator)))
                return die_("getting block from iterator");
        if(0 == (app = FLAC__metadata_object_new(FLAC__METADATA_TYPE_APPLICATION)))
@@ -1106,14 +1386,14 @@ static FLAC__bool test_level_2_()
        if(!FLAC__metadata_iterator_set_block(iterator, app))
                return die_c_("FLAC__metadata_iterator_set_block(iterator, app)", FLAC__metadata_chain_status(chain));
 
-       if(!FLAC__metadata_chain_write(chain, /*use_padding=*/false, /*preserve_file_stats=*/false))
+       if(!write_chain_(chain, /*use_padding=*/false, /*preserve_file_stats=*/false, filename_based, flacfile_))
                return die_c_("during FLAC__metadata_chain_write(chain, false, false)", FLAC__metadata_chain_status(chain));
        if(!compare_chain_(chain, our_current_position, FLAC__metadata_iterator_get_block(iterator)))
                return false;
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("S[A]\tshrink APPLICATION, don't use padding\n");
+       printf("SV[A]\tshrink APPLICATION, don't use padding\n");
        if(0 == (app = FLAC__metadata_object_clone(our_metadata_.blocks[our_current_position])))
                return die_("copying object");
        if(!FLAC__metadata_object_application_set_data(app, data, 26, true))
@@ -1123,14 +1403,14 @@ static FLAC__bool test_level_2_()
        if(!FLAC__metadata_iterator_set_block(iterator, app))
                return die_c_("FLAC__metadata_iterator_set_block(iterator, app)", FLAC__metadata_chain_status(chain));
 
-       if(!FLAC__metadata_chain_write(chain, /*use_padding=*/false, /*preserve_file_stats=*/false))
+       if(!write_chain_(chain, /*use_padding=*/false, /*preserve_file_stats=*/false, filename_based, flacfile_))
                return die_c_("during FLAC__metadata_chain_write(chain, false, false)", FLAC__metadata_chain_status(chain));
        if(!compare_chain_(chain, our_current_position, FLAC__metadata_iterator_get_block(iterator)))
                return false;
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("S[A]\tgrow APPLICATION, don't use padding\n");
+       printf("SV[A]\tgrow APPLICATION, don't use padding\n");
        if(0 == (app = FLAC__metadata_object_clone(our_metadata_.blocks[our_current_position])))
                return die_("copying object");
        if(!FLAC__metadata_object_application_set_data(app, data, 28, true))
@@ -1140,14 +1420,14 @@ static FLAC__bool test_level_2_()
        if(!FLAC__metadata_iterator_set_block(iterator, app))
                return die_c_("FLAC__metadata_iterator_set_block(iterator, app)", FLAC__metadata_chain_status(chain));
 
-       if(!FLAC__metadata_chain_write(chain, /*use_padding=*/false, /*preserve_file_stats=*/false))
+       if(!write_chain_(chain, /*use_padding=*/false, /*preserve_file_stats=*/false, filename_based, flacfile_))
                return die_c_("during FLAC__metadata_chain_write(chain, false, false)", FLAC__metadata_chain_status(chain));
        if(!compare_chain_(chain, our_current_position, FLAC__metadata_iterator_get_block(iterator)))
                return false;
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("S[A]\tgrow APPLICATION, use padding, but last block is not padding\n");
+       printf("SV[A]\tgrow APPLICATION, use padding, but last block is not padding\n");
        if(0 == (app = FLAC__metadata_object_clone(our_metadata_.blocks[our_current_position])))
                return die_("copying object");
        if(!FLAC__metadata_object_application_set_data(app, data, 36, true))
@@ -1157,14 +1437,14 @@ static FLAC__bool test_level_2_()
        if(!FLAC__metadata_iterator_set_block(iterator, app))
                return die_c_("FLAC__metadata_iterator_set_block(iterator, app)", FLAC__metadata_chain_status(chain));
 
-       if(!FLAC__metadata_chain_write(chain, /*use_padding=*/false, /*preserve_file_stats=*/false))
+       if(!write_chain_(chain, /*use_padding=*/false, /*preserve_file_stats=*/false, filename_based, flacfile_))
                return die_c_("during FLAC__metadata_chain_write(chain, false, false)", FLAC__metadata_chain_status(chain));
        if(!compare_chain_(chain, our_current_position, FLAC__metadata_iterator_get_block(iterator)))
                return false;
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("S[A]\tshrink APPLICATION, use padding, last block is not padding, but delta is too small for new PADDING block\n");
+       printf("SV[A]\tshrink APPLICATION, use padding, last block is not padding, but delta is too small for new PADDING block\n");
        if(0 == (app = FLAC__metadata_object_clone(our_metadata_.blocks[our_current_position])))
                return die_("copying object");
        if(!FLAC__metadata_object_application_set_data(app, data, 33, true))
@@ -1174,14 +1454,14 @@ static FLAC__bool test_level_2_()
        if(!FLAC__metadata_iterator_set_block(iterator, app))
                return die_c_("FLAC__metadata_iterator_set_block(iterator, app)", FLAC__metadata_chain_status(chain));
 
-       if(!FLAC__metadata_chain_write(chain, /*use_padding=*/true, /*preserve_file_stats=*/false))
+       if(!write_chain_(chain, /*use_padding=*/true, /*preserve_file_stats=*/false, filename_based, flacfile_))
                return die_c_("during FLAC__metadata_chain_write(chain, true, false)", FLAC__metadata_chain_status(chain));
        if(!compare_chain_(chain, our_current_position, FLAC__metadata_iterator_get_block(iterator)))
                return false;
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("S[A]\tshrink APPLICATION, use padding, last block is not padding, delta is enough for new PADDING block\n");
+       printf("SV[A]\tshrink APPLICATION, use padding, last block is not padding, delta is enough for new PADDING block\n");
        if(0 == (padding = FLAC__metadata_object_new(FLAC__METADATA_TYPE_PADDING)))
                return die_("creating PADDING block");
        if(0 == (app = FLAC__metadata_object_clone(our_metadata_.blocks[our_current_position])))
@@ -1196,14 +1476,14 @@ static FLAC__bool test_level_2_()
        if(!FLAC__metadata_iterator_set_block(iterator, app))
                return die_c_("FLAC__metadata_iterator_set_block(iterator, app)", FLAC__metadata_chain_status(chain));
 
-       if(!FLAC__metadata_chain_write(chain, /*use_padding=*/true, /*preserve_file_stats=*/false))
+       if(!write_chain_(chain, /*use_padding=*/true, /*preserve_file_stats=*/false, filename_based, flacfile_))
                return die_c_("during FLAC__metadata_chain_write(chain, true, false)", FLAC__metadata_chain_status(chain));
        if(!compare_chain_(chain, our_current_position, FLAC__metadata_iterator_get_block(iterator)))
                return false;
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("S[A]P\tshrink APPLICATION, use padding, last block is padding\n");
+       printf("SV[A]P\tshrink APPLICATION, use padding, last block is padding\n");
        if(0 == (app = FLAC__metadata_object_clone(our_metadata_.blocks[our_current_position])))
                return die_("copying object");
        if(!FLAC__metadata_object_application_set_data(app, data, 16, true))
@@ -1214,14 +1494,14 @@ static FLAC__bool test_level_2_()
        if(!FLAC__metadata_iterator_set_block(iterator, app))
                return die_c_("FLAC__metadata_iterator_set_block(iterator, app)", FLAC__metadata_chain_status(chain));
 
-       if(!FLAC__metadata_chain_write(chain, /*use_padding=*/true, /*preserve_file_stats=*/false))
+       if(!write_chain_(chain, /*use_padding=*/true, /*preserve_file_stats=*/false, filename_based, flacfile_))
                return die_c_("during FLAC__metadata_chain_write(chain, true, false)", FLAC__metadata_chain_status(chain));
        if(!compare_chain_(chain, our_current_position, FLAC__metadata_iterator_get_block(iterator)))
                return false;
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("S[A]P\tgrow APPLICATION, use padding, last block is padding, but delta is too small\n");
+       printf("SV[A]P\tgrow APPLICATION, use padding, last block is padding, but delta is too small\n");
        if(0 == (app = FLAC__metadata_object_clone(our_metadata_.blocks[our_current_position])))
                return die_("copying object");
        if(!FLAC__metadata_object_application_set_data(app, data, 50, true))
@@ -1231,14 +1511,14 @@ static FLAC__bool test_level_2_()
        if(!FLAC__metadata_iterator_set_block(iterator, app))
                return die_c_("FLAC__metadata_iterator_set_block(iterator, app)", FLAC__metadata_chain_status(chain));
 
-       if(!FLAC__metadata_chain_write(chain, /*use_padding=*/true, /*preserve_file_stats=*/false))
+       if(!write_chain_(chain, /*use_padding=*/true, /*preserve_file_stats=*/false, filename_based, flacfile_))
                return die_c_("during FLAC__metadata_chain_write(chain, true, false)", FLAC__metadata_chain_status(chain));
        if(!compare_chain_(chain, our_current_position, FLAC__metadata_iterator_get_block(iterator)))
                return false;
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("S[A]P\tgrow APPLICATION, use padding, last block is padding of exceeding size\n");
+       printf("SV[A]P\tgrow APPLICATION, use padding, last block is padding of exceeding size\n");
        if(0 == (app = FLAC__metadata_object_clone(our_metadata_.blocks[our_current_position])))
                return die_("copying object");
        if(!FLAC__metadata_object_application_set_data(app, data, 56, true))
@@ -1249,14 +1529,14 @@ static FLAC__bool test_level_2_()
        if(!FLAC__metadata_iterator_set_block(iterator, app))
                return die_c_("FLAC__metadata_iterator_set_block(iterator, app)", FLAC__metadata_chain_status(chain));
 
-       if(!FLAC__metadata_chain_write(chain, /*use_padding=*/true, /*preserve_file_stats=*/false))
+       if(!write_chain_(chain, /*use_padding=*/true, /*preserve_file_stats=*/false, filename_based, flacfile_))
                return die_c_("during FLAC__metadata_chain_write(chain, true, false)", FLAC__metadata_chain_status(chain));
        if(!compare_chain_(chain, our_current_position, FLAC__metadata_iterator_get_block(iterator)))
                return false;
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("S[A]P\tgrow APPLICATION, use padding, last block is padding of exact size\n");
+       printf("SV[A]P\tgrow APPLICATION, use padding, last block is padding of exact size\n");
        if(0 == (app = FLAC__metadata_object_clone(our_metadata_.blocks[our_current_position])))
                return die_("copying object");
        if(!FLAC__metadata_object_application_set_data(app, data, 67, true))
@@ -1267,19 +1547,24 @@ static FLAC__bool test_level_2_()
        if(!FLAC__metadata_iterator_set_block(iterator, app))
                return die_c_("FLAC__metadata_iterator_set_block(iterator, app)", FLAC__metadata_chain_status(chain));
 
-       if(!FLAC__metadata_chain_write(chain, /*use_padding=*/true, /*preserve_file_stats=*/false))
+       if(!write_chain_(chain, /*use_padding=*/true, /*preserve_file_stats=*/false, filename_based, flacfile_))
                return die_c_("during FLAC__metadata_chain_write(chain, true, false)", FLAC__metadata_chain_status(chain));
        if(!compare_chain_(chain, our_current_position, FLAC__metadata_iterator_get_block(iterator)))
                return false;
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("S[A]\tprev\n");
+       printf("SV[A]\tprev\n");
+       if(!FLAC__metadata_iterator_prev(iterator))
+               return die_("iterator ended early\n");
+       our_current_position--;
+
+       printf("S[V]A\tprev\n");
        if(!FLAC__metadata_iterator_prev(iterator))
                return die_("iterator ended early\n");
        our_current_position--;
 
-       printf("[S]A\tinsert PADDING before STREAMINFO (should fail)\n");
+       printf("[S]VA\tinsert PADDING before STREAMINFO (should fail)\n");
        if(0 == (padding = FLAC__metadata_object_new(FLAC__METADATA_TYPE_PADDING)))
                return die_("creating PADDING block");
        padding->length = 30;
@@ -1288,7 +1573,12 @@ static FLAC__bool test_level_2_()
        else
                return die_("FLAC__metadata_iterator_insert_block_before() should have returned false");
 
-       printf("[S]A\tinsert PADDING after\n");
+       printf("[S]VP\tnext\n");
+       if(!FLAC__metadata_iterator_next(iterator))
+               return die_("iterator ended early\n");
+       our_current_position++;
+
+       printf("S[V]A\tinsert PADDING after\n");
        if(!insert_to_our_metadata_(padding, ++our_current_position, /*copy=*/true))
                return die_("copying metadata");
        if(!FLAC__metadata_iterator_insert_block_after(iterator, padding))
@@ -1297,7 +1587,7 @@ static FLAC__bool test_level_2_()
        if(!compare_chain_(chain, our_current_position, FLAC__metadata_iterator_get_block(iterator)))
                return false;
 
-       printf("S[P]A\tinsert PADDING before\n");
+       printf("SV[P]A\tinsert PADDING before\n");
        if(0 == (padding = FLAC__metadata_object_clone(our_metadata_.blocks[our_current_position])))
                return die_("creating PADDING block");
        padding->length = 17;
@@ -1309,7 +1599,7 @@ static FLAC__bool test_level_2_()
        if(!compare_chain_(chain, our_current_position, FLAC__metadata_iterator_get_block(iterator)))
                return false;
 
-       printf("S[P]PA\tinsert PADDING before\n");
+       printf("SV[P]PA\tinsert PADDING before\n");
        if(0 == (padding = FLAC__metadata_object_clone(our_metadata_.blocks[our_current_position])))
                return die_("creating PADDING block");
        padding->length = 0;
@@ -1321,23 +1611,23 @@ static FLAC__bool test_level_2_()
        if(!compare_chain_(chain, our_current_position, FLAC__metadata_iterator_get_block(iterator)))
                return false;
 
-       printf("S[P]PPA\tnext\n");
+       printf("SV[P]PPA\tnext\n");
        if(!FLAC__metadata_iterator_next(iterator))
                return die_("iterator ended early\n");
        our_current_position++;
 
-       printf("SP[P]PA\tnext\n");
+       printf("SVP[P]PA\tnext\n");
        if(!FLAC__metadata_iterator_next(iterator))
                return die_("iterator ended early\n");
        our_current_position++;
 
-       printf("SPP[P]A\tnext\n");
+       printf("SVPP[P]A\tnext\n");
        if(!FLAC__metadata_iterator_next(iterator))
                return die_("iterator ended early\n");
        our_current_position++;
 
-       printf("SPPP[A]\tinsert PADDING after\n");
-       if(0 == (padding = FLAC__metadata_object_clone(our_metadata_.blocks[1])))
+       printf("SVPPP[A]\tinsert PADDING after\n");
+       if(0 == (padding = FLAC__metadata_object_clone(our_metadata_.blocks[2])))
                return die_("creating PADDING block");
        padding->length = 57;
        if(!insert_to_our_metadata_(padding, ++our_current_position, /*copy=*/true))
@@ -1348,8 +1638,8 @@ static FLAC__bool test_level_2_()
        if(!compare_chain_(chain, our_current_position, FLAC__metadata_iterator_get_block(iterator)))
                return false;
 
-       printf("SPPPA[P]\tinsert PADDING before\n");
-       if(0 == (padding = FLAC__metadata_object_clone(our_metadata_.blocks[1])))
+       printf("SVPPPA[P]\tinsert PADDING before\n");
+       if(0 == (padding = FLAC__metadata_object_clone(our_metadata_.blocks[2])))
                return die_("creating PADDING block");
        padding->length = 99;
        if(!insert_to_our_metadata_(padding, our_current_position, /*copy=*/true))
@@ -1364,28 +1654,28 @@ static FLAC__bool test_level_2_()
        FLAC__metadata_iterator_delete(iterator);
        our_current_position = 0;
 
-       printf("SPPPAPP\tmerge padding\n");
+       printf("SVPPPAPP\tmerge padding\n");
        FLAC__metadata_chain_merge_padding(chain);
-       our_metadata_.blocks[1]->length += (FLAC__STREAM_METADATA_HEADER_LENGTH + our_metadata_.blocks[2]->length);
-       our_metadata_.blocks[1]->length += (FLAC__STREAM_METADATA_HEADER_LENGTH + our_metadata_.blocks[3]->length);
-       our_metadata_.blocks[5]->length += (FLAC__STREAM_METADATA_HEADER_LENGTH + our_metadata_.blocks[6]->length);
-       delete_from_our_metadata_(6);
+       our_metadata_.blocks[2]->length += (FLAC__STREAM_METADATA_HEADER_LENGTH + our_metadata_.blocks[3]->length);
+       our_metadata_.blocks[2]->length += (FLAC__STREAM_METADATA_HEADER_LENGTH + our_metadata_.blocks[4]->length);
+       our_metadata_.blocks[6]->length += (FLAC__STREAM_METADATA_HEADER_LENGTH + our_metadata_.blocks[7]->length);
+       delete_from_our_metadata_(7);
+       delete_from_our_metadata_(4);
        delete_from_our_metadata_(3);
-       delete_from_our_metadata_(2);
 
-       if(!FLAC__metadata_chain_write(chain, /*use_padding=*/true, /*preserve_file_stats=*/false))
+       if(!write_chain_(chain, /*use_padding=*/true, /*preserve_file_stats=*/false, filename_based, flacfile_))
                return die_c_("during FLAC__metadata_chain_write(chain, true, false)", FLAC__metadata_chain_status(chain));
        if(!compare_chain_(chain, 0, 0))
                return false;
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("SPAP\tsort padding\n");
+       printf("SVPAP\tsort padding\n");
        FLAC__metadata_chain_sort_padding(chain);
-       our_metadata_.blocks[3]->length += (FLAC__STREAM_METADATA_HEADER_LENGTH + our_metadata_.blocks[1]->length);
-       delete_from_our_metadata_(1);
+       our_metadata_.blocks[4]->length += (FLAC__STREAM_METADATA_HEADER_LENGTH + our_metadata_.blocks[2]->length);
+       delete_from_our_metadata_(2);
 
-       if(!FLAC__metadata_chain_write(chain, /*use_padding=*/true, /*preserve_file_stats=*/false))
+       if(!write_chain_(chain, /*use_padding=*/true, /*preserve_file_stats=*/false, filename_based, flacfile_))
                return die_c_("during FLAC__metadata_chain_write(chain, true, false)", FLAC__metadata_chain_status(chain));
        if(!compare_chain_(chain, 0, 0))
                return false;
@@ -1400,12 +1690,17 @@ static FLAC__bool test_level_2_()
 
        FLAC__metadata_iterator_init(iterator, chain);
 
-       printf("[S]AP\tnext\n");
+       printf("[S]VAP\tnext\n");
+       if(!FLAC__metadata_iterator_next(iterator))
+               return die_("iterator ended early\n");
+       our_current_position++;
+
+       printf("S[V]AP\tnext\n");
        if(!FLAC__metadata_iterator_next(iterator))
                return die_("iterator ended early\n");
        our_current_position++;
 
-       printf("S[A]P\tdelete middle block, replace with padding\n");
+       printf("SV[A]P\tdelete middle block, replace with padding\n");
        if(0 == (padding = FLAC__metadata_object_new(FLAC__METADATA_TYPE_PADDING)))
                return die_("creating PADDING block");
        padding->length = 71;
@@ -1417,12 +1712,12 @@ static FLAC__bool test_level_2_()
        if(!compare_chain_(chain, our_current_position, FLAC__metadata_iterator_get_block(iterator)))
                return false;
 
-       printf("[S]PP\tnext\n");
+       printf("S[V]PP\tnext\n");
        if(!FLAC__metadata_iterator_next(iterator))
                return die_("iterator ended early\n");
        our_current_position++;
 
-       printf("S[P]P\tdelete middle block, don't replace with padding\n");
+       printf("SV[P]P\tdelete middle block, don't replace with padding\n");
        delete_from_our_metadata_(our_current_position--);
        if(!FLAC__metadata_iterator_delete_block(iterator, /*replace_with_padding=*/false))
                return die_c_("FLAC__metadata_iterator_delete_block(iterator, false)", FLAC__metadata_chain_status(chain));
@@ -1430,12 +1725,12 @@ static FLAC__bool test_level_2_()
        if(!compare_chain_(chain, our_current_position, FLAC__metadata_iterator_get_block(iterator)))
                return false;
 
-       printf("[S]P\tnext\n");
+       printf("S[V]P\tnext\n");
        if(!FLAC__metadata_iterator_next(iterator))
                return die_("iterator ended early\n");
        our_current_position++;
 
-       printf("S[P]\tdelete last block, replace with padding\n");
+       printf("SV[P]\tdelete last block, replace with padding\n");
        if(0 == (padding = FLAC__metadata_object_new(FLAC__METADATA_TYPE_PADDING)))
                return die_("creating PADDING block");
        padding->length = 219;
@@ -1447,12 +1742,12 @@ static FLAC__bool test_level_2_()
        if(!compare_chain_(chain, our_current_position, FLAC__metadata_iterator_get_block(iterator)))
                return false;
 
-       printf("[S]P\tnext\n");
+       printf("S[V]P\tnext\n");
        if(!FLAC__metadata_iterator_next(iterator))
                return die_("iterator ended early\n");
        our_current_position++;
 
-       printf("S[P]\tdelete last block, don't replace with padding\n");
+       printf("SV[P]\tdelete last block, don't replace with padding\n");
        delete_from_our_metadata_(our_current_position--);
        if(!FLAC__metadata_iterator_delete_block(iterator, /*replace_with_padding=*/false))
                return die_c_("FLAC__metadata_iterator_delete_block(iterator, false)", FLAC__metadata_chain_status(chain));
@@ -1460,7 +1755,12 @@ static FLAC__bool test_level_2_()
        if(!compare_chain_(chain, our_current_position, FLAC__metadata_iterator_get_block(iterator)))
                return false;
 
-       printf("[S]\tdelete STREAMINFO block, should fail\n");
+       printf("S[V]\tprev\n");
+       if(!FLAC__metadata_iterator_prev(iterator))
+               return die_("iterator ended early\n");
+       our_current_position--;
+
+       printf("[S]V\tdelete STREAMINFO block, should fail\n");
        if(FLAC__metadata_iterator_delete_block(iterator, /*replace_with_padding=*/false))
                return die_("FLAC__metadata_iterator_delete_block() on STREAMINFO should have failed but didn't");
 
@@ -1471,20 +1771,20 @@ static FLAC__bool test_level_2_()
        FLAC__metadata_iterator_delete(iterator);
        our_current_position = 0;
 
-       printf("S\tmerge padding\n");
+       printf("SV\tmerge padding\n");
        FLAC__metadata_chain_merge_padding(chain);
 
-       if(!FLAC__metadata_chain_write(chain, /*use_padding=*/false, /*preserve_file_stats=*/false))
+       if(!write_chain_(chain, /*use_padding=*/false, /*preserve_file_stats=*/false, filename_based, flacfile_))
                return die_c_("during FLAC__metadata_chain_write(chain, false, false)", FLAC__metadata_chain_status(chain));
        if(!compare_chain_(chain, 0, 0))
                return false;
        if(!test_file_(flacfile_, decoder_metadata_callback_compare_))
                return false;
 
-       printf("S\tsort padding\n");
+       printf("SV\tsort padding\n");
        FLAC__metadata_chain_sort_padding(chain);
 
-       if(!FLAC__metadata_chain_write(chain, /*use_padding=*/false, /*preserve_file_stats=*/false))
+       if(!write_chain_(chain, /*use_padding=*/false, /*preserve_file_stats=*/false, filename_based, flacfile_))
                return die_c_("during FLAC__metadata_chain_write(chain, false, false)", FLAC__metadata_chain_status(chain));
        if(!compare_chain_(chain, 0, 0))
                return false;
@@ -1501,6 +1801,168 @@ static FLAC__bool test_level_2_()
        return true;
 }
 
+static FLAC__bool test_level_2_misc_()
+{
+       FLAC__Metadata_Iterator *iterator;
+       FLAC__Metadata_Chain *chain;
+       FLAC__IOCallbacks callbacks;
+
+       memset(&callbacks, 0, sizeof(callbacks));
+       callbacks.read = (FLAC__IOCallback_Read)fread;
+#ifdef FLAC__VALGRIND_TESTING
+       callbacks.write = chain_write_cb_;
+#else
+       callbacks.write = (FLAC__IOCallback_Write)fwrite;
+#endif
+       callbacks.seek = chain_seek_cb_;
+       callbacks.tell = chain_tell_cb_;
+       callbacks.eof = chain_eof_cb_;
+
+       printf("\n\n++++++ testing level 2 interface (mismatched read/write protections)\n");
+
+       printf("generate file\n");
+
+       if(!generate_file_())
+               return false;
+
+       printf("create chain\n");
+
+       if(0 == (chain = FLAC__metadata_chain_new()))
+               return die_("allocating chain");
+
+       printf("read chain (filename-based)\n");
+
+       if(!FLAC__metadata_chain_read(chain, flacfile_))
+               return die_c_("reading chain", FLAC__metadata_chain_status(chain));
+
+       printf("write chain with wrong method FLAC__metadata_chain_write_with_callbacks()\n");
+       {
+               if(FLAC__metadata_chain_write_with_callbacks(chain, /*use_padding=*/false, 0, callbacks))
+                       return die_c_("mismatched write should have failed", FLAC__metadata_chain_status(chain));
+               if(FLAC__metadata_chain_status(chain) != FLAC__METADATA_CHAIN_STATUS_READ_WRITE_MISMATCH)
+                       return die_c_("expected FLAC__METADATA_CHAIN_STATUS_READ_WRITE_MISMATCH", FLAC__metadata_chain_status(chain));
+               printf("  OK: FLAC__metadata_chain_write_with_callbacks() returned false,FLAC__METADATA_CHAIN_STATUS_READ_WRITE_MISMATCH like it should\n");
+       }
+
+       printf("read chain (filename-based)\n");
+
+       if(!FLAC__metadata_chain_read(chain, flacfile_))
+               return die_c_("reading chain", FLAC__metadata_chain_status(chain));
+
+       printf("write chain with wrong method FLAC__metadata_chain_write_with_callbacks_and_tempfile()\n");
+       {
+               if(FLAC__metadata_chain_write_with_callbacks_and_tempfile(chain, /*use_padding=*/false, 0, callbacks, 0, callbacks))
+                       return die_c_("mismatched write should have failed", FLAC__metadata_chain_status(chain));
+               if(FLAC__metadata_chain_status(chain) != FLAC__METADATA_CHAIN_STATUS_READ_WRITE_MISMATCH)
+                       return die_c_("expected FLAC__METADATA_CHAIN_STATUS_READ_WRITE_MISMATCH", FLAC__metadata_chain_status(chain));
+               printf("  OK: FLAC__metadata_chain_write_with_callbacks_and_tempfile() returned false,FLAC__METADATA_CHAIN_STATUS_READ_WRITE_MISMATCH like it should\n");
+       }
+
+       printf("read chain (callback-based)\n");
+       {
+               FILE *file = fopen(flacfile_, "rb");
+               if(0 == file)
+                       return die_("opening file");
+               if(!FLAC__metadata_chain_read_with_callbacks(chain, (FLAC__IOHandle)file, callbacks)) {
+                       fclose(file);
+                       return die_c_("reading chain", FLAC__metadata_chain_status(chain));
+               }
+               fclose(file);
+       }
+
+       printf("write chain with wrong method FLAC__metadata_chain_write()\n");
+       {
+               if(FLAC__metadata_chain_write(chain, /*use_padding=*/false, /*preserve_file_stats=*/false))
+                       return die_c_("mismatched write should have failed", FLAC__metadata_chain_status(chain));
+               if(FLAC__metadata_chain_status(chain) != FLAC__METADATA_CHAIN_STATUS_READ_WRITE_MISMATCH)
+                       return die_c_("expected FLAC__METADATA_CHAIN_STATUS_READ_WRITE_MISMATCH", FLAC__metadata_chain_status(chain));
+               printf("  OK: FLAC__metadata_chain_write() returned false,FLAC__METADATA_CHAIN_STATUS_READ_WRITE_MISMATCH like it should\n");
+       }
+
+       printf("read chain (callback-based)\n");
+       {
+               FILE *file = fopen(flacfile_, "rb");
+               if(0 == file)
+                       return die_("opening file");
+               if(!FLAC__metadata_chain_read_with_callbacks(chain, (FLAC__IOHandle)file, callbacks)) {
+                       fclose(file);
+                       return die_c_("reading chain", FLAC__metadata_chain_status(chain));
+               }
+               fclose(file);
+       }
+
+       printf("testing FLAC__metadata_chain_check_if_tempfile_needed()... ");
+
+       if(!FLAC__metadata_chain_check_if_tempfile_needed(chain, /*use_padding=*/false))
+               printf("OK: FLAC__metadata_chain_check_if_tempfile_needed() returned false like it should\n");
+       else
+               return die_("FLAC__metadata_chain_check_if_tempfile_needed() returned true but shouldn't have");
+
+       printf("write chain with wrong method FLAC__metadata_chain_write_with_callbacks_and_tempfile()\n");
+       {
+               if(FLAC__metadata_chain_write_with_callbacks_and_tempfile(chain, /*use_padding=*/false, 0, callbacks, 0, callbacks))
+                       return die_c_("mismatched write should have failed", FLAC__metadata_chain_status(chain));
+               if(FLAC__metadata_chain_status(chain) != FLAC__METADATA_CHAIN_STATUS_WRONG_WRITE_CALL)
+                       return die_c_("expected FLAC__METADATA_CHAIN_STATUS_WRONG_WRITE_CALL", FLAC__metadata_chain_status(chain));
+               printf("  OK: FLAC__metadata_chain_write_with_callbacks_and_tempfile() returned false,FLAC__METADATA_CHAIN_STATUS_WRONG_WRITE_CALL like it should\n");
+       }
+
+       printf("read chain (callback-based)\n");
+       {
+               FILE *file = fopen(flacfile_, "rb");
+               if(0 == file)
+                       return die_("opening file");
+               if(!FLAC__metadata_chain_read_with_callbacks(chain, (FLAC__IOHandle)file, callbacks)) {
+                       fclose(file);
+                       return die_c_("reading chain", FLAC__metadata_chain_status(chain));
+               }
+               fclose(file);
+       }
+
+       printf("create iterator\n");
+       if(0 == (iterator = FLAC__metadata_iterator_new()))
+               return die_("allocating memory for iterator");
+
+       FLAC__metadata_iterator_init(iterator, chain);
+
+       printf("[S]VP\tnext\n");
+       if(!FLAC__metadata_iterator_next(iterator))
+               return die_("iterator ended early\n");
+
+       printf("S[V]P\tdelete VORBIS_COMMENT, write\n");
+       if(!FLAC__metadata_iterator_delete_block(iterator, /*replace_with_padding=*/false))
+               return die_c_("block delete failed\n", FLAC__metadata_chain_status(chain));
+
+       printf("testing FLAC__metadata_chain_check_if_tempfile_needed()... ");
+
+       if(FLAC__metadata_chain_check_if_tempfile_needed(chain, /*use_padding=*/false))
+               printf("OK: FLAC__metadata_chain_check_if_tempfile_needed() returned true like it should\n");
+       else
+               return die_("FLAC__metadata_chain_check_if_tempfile_needed() returned false but shouldn't have");
+
+       printf("write chain with wrong method FLAC__metadata_chain_write_with_callbacks()\n");
+       {
+               if(FLAC__metadata_chain_write_with_callbacks(chain, /*use_padding=*/false, 0, callbacks))
+                       return die_c_("mismatched write should have failed", FLAC__metadata_chain_status(chain));
+               if(FLAC__metadata_chain_status(chain) != FLAC__METADATA_CHAIN_STATUS_WRONG_WRITE_CALL)
+                       return die_c_("expected FLAC__METADATA_CHAIN_STATUS_WRONG_WRITE_CALL", FLAC__metadata_chain_status(chain));
+               printf("  OK: FLAC__metadata_chain_write_with_callbacks() returned false,FLAC__METADATA_CHAIN_STATUS_WRONG_WRITE_CALL like it should\n");
+       }
+
+       printf("delete iterator\n");
+
+       FLAC__metadata_iterator_delete(iterator);
+
+       printf("delete chain\n");
+
+       FLAC__metadata_chain_delete(chain);
+
+       if(!remove_file_(flacfile_))
+               return false;
+
+       return true;
+}
+
 FLAC__bool test_metadata_file_manipulation()
 {
        printf("\n+++ libFLAC unit test: metadata manipulation\n\n");
@@ -1513,7 +1975,11 @@ FLAC__bool test_metadata_file_manipulation()
        if(!test_level_1_())
                return false;
 
-       if(!test_level_2_())
+       if(!test_level_2_(/*filename_based=*/true)) /* filename-based */
+               return false;
+       if(!test_level_2_(/*filename_based=*/false)) /* callback-based */
+               return false;
+       if(!test_level_2_misc_())
                return false;
 
        return true;