blob: ae397f7226e08dc5121f6bb8e6a125bb8d68ff01 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/*
* SPDX-License-Identifier: Apache-2.0
*/
#include <stdint.h>
#include <nffs/nffs.h>
#include <fs.h>
#include "nffs_test_utils.h"
#include <ztest_assert.h>
void test_overwrite_three(void)
{
struct nffs_test_block_desc *blocks = (struct nffs_test_block_desc[]) {
{
.data = "abcdefgh",
.data_len = 8,
}, {
.data = "ijklmnop",
.data_len = 8,
}, {
.data = "qrstuvwx",
.data_len = 8,
}
};
fs_file_t file;
int rc;
/*** Setup. */
rc = nffs_format_full(nffs_current_area_descs);
zassert_equal(rc, 0, "cannot format nffs");
/*** Overwrite three blocks (middle). */
nffs_test_util_create_file_blocks("/myfile.txt", blocks, 3);
rc = fs_open(&file, "/myfile.txt");
zassert_equal(rc, 0, "cannot open file");
nffs_test_util_assert_file_len(file.fp, 24);
zassert_equal(fs_tell(&file), 0, "invalid pos in file");
rc = fs_seek(&file, 6, FS_SEEK_SET);
zassert_equal(rc, 0, "cannot set pos in file");
nffs_test_util_assert_file_len(file.fp, 24);
zassert_equal(fs_tell(&file), 6, "invalid pos in file");
rc = fs_write(&file, "1234567890!@", 12);
nffs_test_util_assert_file_len(file.fp, 24);
zassert_equal(fs_tell(&file), 18, "invalid pos in file");
rc = fs_close(&file);
zassert_equal(rc, 0, "cannot close file");
nffs_test_util_assert_contents("/myfile.txt",
"abcdef1234567890!@stuvwx", 24);
nffs_test_util_assert_block_count("/myfile.txt", 3);
/*** Overwrite three blocks (start). */
nffs_test_util_create_file_blocks("/myfile.txt", blocks, 3);
rc = fs_open(&file, "/myfile.txt");
zassert_equal(rc, 0, "cannot open file");
nffs_test_util_assert_file_len(file.fp, 24);
zassert_equal(fs_tell(&file), 0, "invalid pos in file");
rc = fs_write(&file, "1234567890!@#$%^&*()", 20);
nffs_test_util_assert_file_len(file.fp, 24);
zassert_equal(fs_tell(&file), 20, "invalid pos in file");
rc = fs_close(&file);
zassert_equal(rc, 0, "cannot close file");
nffs_test_util_assert_contents("/myfile.txt",
"1234567890!@#$%^&*()uvwx", 24);
nffs_test_util_assert_block_count("/myfile.txt", 3);
/*** Overwrite three blocks (end). */
nffs_test_util_create_file_blocks("/myfile.txt", blocks, 3);
rc = fs_open(&file, "/myfile.txt");
zassert_equal(rc, 0, "cannot open file");
nffs_test_util_assert_file_len(file.fp, 24);
zassert_equal(fs_tell(&file), 0, "invalid pos in file");
rc = fs_seek(&file, 6, FS_SEEK_SET);
zassert_equal(rc, 0, "cannot set pos in file");
nffs_test_util_assert_file_len(file.fp, 24);
zassert_equal(fs_tell(&file), 6, "invalid pos in file");
rc = fs_write(&file, "1234567890!@#$%^&*", 18);
nffs_test_util_assert_file_len(file.fp, 24);
zassert_equal(fs_tell(&file), 24, "invalid pos in file");
rc = fs_close(&file);
zassert_equal(rc, 0, "cannot close file");
nffs_test_util_assert_contents("/myfile.txt",
"abcdef1234567890!@#$%^&*", 24);
nffs_test_util_assert_block_count("/myfile.txt", 3);
/*** Overwrite three blocks middle, extend. */
nffs_test_util_create_file_blocks("/myfile.txt", blocks, 3);
rc = fs_open(&file, "/myfile.txt");
zassert_equal(rc, 0, "cannot open file");
nffs_test_util_assert_file_len(file.fp, 24);
zassert_equal(fs_tell(&file), 0, "invalid pos in file");
rc = fs_seek(&file, 6, FS_SEEK_SET);
zassert_equal(rc, 0, "cannot set pos in file");
nffs_test_util_assert_file_len(file.fp, 24);
zassert_equal(fs_tell(&file), 6, "invalid pos in file");
rc = fs_write(&file, "1234567890!@#$%^&*()", 20);
nffs_test_util_assert_file_len(file.fp, 26);
zassert_equal(fs_tell(&file), 26, "invalid pos in file");
rc = fs_close(&file);
zassert_equal(rc, 0, "cannot close file");
nffs_test_util_assert_contents("/myfile.txt",
"abcdef1234567890!@#$%^&*()", 26);
nffs_test_util_assert_block_count("/myfile.txt", 3);
/*** Overwrite three blocks start, extend. */
nffs_test_util_create_file_blocks("/myfile.txt", blocks, 3);
rc = fs_open(&file, "/myfile.txt");
zassert_equal(rc, 0, "cannot open file");
nffs_test_util_assert_file_len(file.fp, 24);
zassert_equal(fs_tell(&file), 0, "invalid pos in file");
rc = fs_seek(&file, 0, FS_SEEK_SET);
zassert_equal(rc, 0, "cannot set pos in file");
rc = fs_write(&file, "1234567890!@#$%^&*()abcdefghij", 30);
nffs_test_util_assert_file_len(file.fp, 30);
zassert_equal(fs_tell(&file), 30, "invalid pos in file");
rc = fs_close(&file);
zassert_equal(rc, 0, "cannot close file");
nffs_test_util_assert_contents("/myfile.txt",
"1234567890!@#$%^&*()abcdefghij", 30);
struct nffs_test_file_desc *expected_system =
(struct nffs_test_file_desc[]) { {
.filename = "",
.is_dir = 1,
.children = (struct nffs_test_file_desc[]) { {
.filename = "myfile.txt",
.contents = "1234567890!@#$%^&*()abcdefghij",
.contents_len = 30,
}, {
.filename = NULL,
} },
} };
nffs_test_assert_system(expected_system, nffs_current_area_descs);
}