123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- /*
- * FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application
- * Copyright (C) 2005-2018, Anthony Minessale II <anthm@freeswitch.org>
- *
- * Version: MPL 1.1
- *
- * The contents of this file are subject to the Mozilla Public License Version
- * 1.1 (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- * http://www.mozilla.org/MPL/
- *
- * Software distributed under the License is distributed on an "AS IS" basis,
- * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- * for the specific language governing rights and limitations under the
- * License.
- *
- * The Original Code is FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application
- *
- * The Initial Developer of the Original Code is
- * Anthony Minessale II <anthm@freeswitch.org>
- * Portions created by the Initial Developer are Copyright (C)
- * the Initial Developer. All Rights Reserved.
- *
- * Contributor(s):
- * Chris Rienzo <chris@signalwire.com>
- * Seven Du <dujinfang@gmail.com>
- * Dragos Oancea <dragos@signalwire.com>
- *
- * switch_core_file.c -- tests file core functions
- *
- */
- #include <switch.h>
- #include <stdlib.h>
- #include <test/switch_test.h>
- FST_CORE_BEGIN("./conf")
- {
- FST_SUITE_BEGIN(switch_core_file)
- {
- FST_SETUP_BEGIN()
- {
- }
- FST_SETUP_END()
- FST_TEARDOWN_BEGIN()
- {
- }
- FST_TEARDOWN_END()
- FST_TEST_BEGIN(test_switch_core_file_close)
- {
- switch_file_handle_t fh = { 0 };
- switch_status_t status = SWITCH_STATUS_FALSE;
- static char filename[] = "/tmp/fs_unit_test.wav";
- static char hdr[] = /*simplest wav file*/
- "\x52\x49\x46\x46"
- "\x24\x00\x00\x00"
- "\x57\x41\x56\x45"
- "\x66\x6d\x74\x20"
- "\x10\x00\x00\x00"
- "\x01\x00\x01\x00"
- "\x44\xac\x00\x00"
- "\x88\x58\x01\x00"
- "\x02\x00\x10\x00"
- "\x64\x61\x74\x61"
- "\x00\x00";
- FILE *f = NULL;
- f = fopen(filename, "w");
- fst_check(f != NULL);
- fwrite(hdr, 1, sizeof(hdr) ,f);
- fclose(f);
- status = switch_core_file_open(&fh, filename, 1, 8000, SWITCH_FILE_FLAG_READ | SWITCH_FILE_DATA_SHORT, NULL);
- fst_check(status == SWITCH_STATUS_SUCCESS);
- fst_check(switch_test_flag(&fh, SWITCH_FILE_OPEN));
- status = switch_core_file_pre_close(&fh);
- fst_check(!switch_test_flag(&fh, SWITCH_FILE_OPEN));
- fst_check(switch_test_flag(&fh, SWITCH_FILE_PRE_CLOSED));
- fst_check(status == SWITCH_STATUS_SUCCESS);
- status = switch_core_file_close(&fh);
- fst_check(status == SWITCH_STATUS_SUCCESS);
- fst_check(!switch_test_flag(&fh, SWITCH_FILE_PRE_CLOSED));
- status = switch_core_file_close(&fh);
- fst_check(status == SWITCH_STATUS_FALSE);
- unlink(filename);
- }
- FST_TEST_END()
- FST_TEST_BEGIN(test_switch_core_file_no_pre_close)
- {
- switch_file_handle_t fh = { 0 };
- switch_status_t status = SWITCH_STATUS_FALSE;
- static char filename[] = "/tmp/fs_unit_test.wav";
- static char hdr[] = /*simplest wav file*/
- "\x52\x49\x46\x46"
- "\x24\x00\x00\x00"
- "\x57\x41\x56\x45"
- "\x66\x6d\x74\x20"
- "\x10\x00\x00\x00"
- "\x01\x00\x01\x00"
- "\x44\xac\x00\x00"
- "\x88\x58\x01\x00"
- "\x02\x00\x10\x00"
- "\x64\x61\x74\x61"
- "\x00\x00";
- FILE *f = NULL;
- f = fopen(filename, "w");
- fst_check(f != NULL);
- fwrite(hdr, 1, sizeof(hdr) ,f);
- fclose(f);
- status = switch_core_file_open(&fh, filename, 1, 8000, SWITCH_FILE_FLAG_READ | SWITCH_FILE_DATA_SHORT, NULL);
- fst_check(status == SWITCH_STATUS_SUCCESS);
- fst_check(switch_test_flag(&fh, SWITCH_FILE_OPEN));
- status = switch_core_file_close(&fh);
- fst_check(status == SWITCH_STATUS_SUCCESS);
- fst_check(!switch_test_flag(&fh, SWITCH_FILE_PRE_CLOSED));
- status = switch_core_file_close(&fh);
- fst_check(status == SWITCH_STATUS_FALSE);
- unlink(filename);
- }
- FST_TEST_END()
- FST_TEST_BEGIN(test_switch_core_file_write_mono)
- {
- switch_status_t status = SWITCH_STATUS_FALSE;
- switch_file_handle_t fhw = { 0 };
- static char filename[] = "/tmp/fs_write_unit_test.wav";
- int16_t *buf;
- int nr_frames = 3, i;
- switch_size_t len;
- len = 160;
- switch_malloc(buf, len * sizeof(int16_t));
- status = switch_core_file_open(&fhw, filename, 1, 8000, SWITCH_FILE_FLAG_WRITE | SWITCH_FILE_DATA_SHORT, NULL);
- fst_check(status == SWITCH_STATUS_SUCCESS);
- for (i = 0; i < nr_frames; i++) {
- memset(buf, i, len * sizeof(int16_t));
- switch_core_file_write(&fhw, buf, &len);
- }
- status = switch_core_file_close(&fhw);
- fst_check(status == SWITCH_STATUS_SUCCESS);
- switch_safe_free(buf);
- unlink(filename);
- }
- FST_TEST_END()
- FST_TEST_BEGIN(test_switch_core_file_write_mono_to_stereo)
- {
- switch_status_t status = SWITCH_STATUS_FALSE;
- switch_file_handle_t fhw = { 0 };
- static char filename[] = "/tmp/fs_write_unit_test.wav";
- int16_t *buf;
- int nr_frames = 3, i, want_channels = 2;
- switch_size_t len;
- len = 160;
- switch_malloc(buf, len * sizeof(int16_t));
- status = switch_core_file_open(&fhw, filename, want_channels, 8000, SWITCH_FILE_FLAG_WRITE | SWITCH_FILE_DATA_SHORT, NULL);
- fst_check(status == SWITCH_STATUS_SUCCESS);
- fhw.real_channels = 1;
- for (i = 0; i < nr_frames; i++) {
- memset(buf, i, len * sizeof(int16_t));
- status = switch_core_file_write(&fhw, buf, &len);
- fst_requires(status == SWITCH_STATUS_SUCCESS);
- }
- status = switch_core_file_close(&fhw);
- fst_check(status == SWITCH_STATUS_SUCCESS);
- switch_safe_free(buf);
- unlink(filename);
- }
- FST_TEST_END()
- FST_TEST_BEGIN(test_switch_core_file_open_max_audio_channels)
- {
- switch_file_handle_t fh = { 0 };
- switch_status_t status = SWITCH_STATUS_FALSE;
- static char filename[] = "/tmp/fs_unit_test.wav";
- static char hdr[] = /*simplest wav file, hardcoded 8 channels*/
- "\x52\x49\x46\x46"
- "\x24\x00\x00\x00"
- "\x57\x41\x56\x45"
- "\x66\x6d\x74\x20"
- "\x10\x00\x00\x00"
- "\x01\x00\x08\x00"
- "\x44\xac\x00\x00"
- "\x88\x58\x01\x00"
- "\x02\x00\x10\x00"
- "\x64\x61\x74\x61"
- "\x00\x00";
- FILE *f = NULL;
- f = fopen(filename, "w");
- fst_check(f != NULL);
- fwrite(hdr, 1, sizeof(hdr) ,f);
- fclose(f);
- switch_core_max_audio_channels(6);
- status = switch_core_file_open(&fh, filename, 1, 8000, SWITCH_FILE_FLAG_READ | SWITCH_FILE_DATA_SHORT, NULL);
- fst_check(status == SWITCH_STATUS_FALSE);
- switch_core_max_audio_channels(8);
- status = switch_core_file_open(&fh, filename, 1, 8000, SWITCH_FILE_FLAG_READ | SWITCH_FILE_DATA_SHORT, NULL);
- fst_check(status == SWITCH_STATUS_SUCCESS);
- status = switch_core_file_close(&fh);
- fst_check(status == SWITCH_STATUS_SUCCESS);
- unlink(filename);
- }
- FST_TEST_END()
- }
- FST_SUITE_END()
- }
- FST_CORE_END()
|