Skip to content

Commit

Permalink
dup dup2 testing
Browse files Browse the repository at this point in the history
syscall testing coverage
  • Loading branch information
mavy committed Jun 21, 2022
1 parent 4110d87 commit 9a9ad69
Show file tree
Hide file tree
Showing 10 changed files with 433 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ gkfs:unit:
- ctest -j $(nproc) -L unit::all --output-junit report.xml

## capture coverage information
- cd ${BUILD_PATH}
- ${CI_SCRIPTS_DIR}/coverage.sh
--verbose
--capture unit
Expand Down
20 changes: 19 additions & 1 deletion tests/integration/coverage/test_error_operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,18 @@ def test_open_error(gkfs_daemon, gkfs_client):
# Undefined in man
ret = gkfs_client.open(file2, os.O_CREAT | os.O_WRONLY)
assert ret.retval == 10000

# RDWR
ret = gkfs_client.open(file2, os.O_RDWR)
assert ret.retval == 10000

# RD
ret = gkfs_client.open(file2, os.O_RDONLY)
assert ret.retval == 10000

# Truncate the file
ret = gkfs_client.open(file2, os.O_TRUNC | os.O_WRONLY)
assert ret.retval == 10000


# Open unexistent file
ret = gkfs_client.open(file3, os.O_WRONLY)
Expand Down Expand Up @@ -150,3 +157,14 @@ def test_check_parents(gkfs_daemon, gkfs_client):
assert ret.retval == -1
assert ret.errno == errno.ENOTDIR


def test_dup(gkfs_daemon, gkfs_client):
file = gkfs_daemon.mountdir / "file"

ret = gkfs_client.open(file, os.O_CREAT | os.O_WRONLY)
assert ret.retval == 10000

ret = gkfs_client.dup_validate(file)
assert ret.retval == 0
assert ret.errno == 0

56 changes: 56 additions & 0 deletions tests/integration/coverage/test_syscalls.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
################################################################################
# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain #
# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany #
# #
# This software was partially supported by the #
# EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). #
# #
# This software was partially supported by the #
# ADA-FS project under the SPPEXA project funded by the DFG. #
# #
# This file is part of GekkoFS. #
# #
# GekkoFS is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation, either version 3 of the License, or #
# (at your option) any later version. #
# #
# GekkoFS is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with GekkoFS. If not, see <https://www.gnu.org/licenses/>. #
# #
# SPDX-License-Identifier: GPL-3.0-or-later #
################################################################################

from sre_parse import State
import harness
from pathlib import Path
import errno
import stat
import os
import ctypes
import sys
import pytest
from harness.logger import logger
import ctypes
nonexisting = "nonexisting"


def test_syscalls(gkfs_daemon, gkfs_client):

file = gkfs_daemon.mountdir / "file"

ret = gkfs_client.open(file, os.O_CREAT | os.O_WRONLY)
assert ret.retval == 10000


ret = gkfs_client.syscall_coverage(file)
assert ret.retval == 0
assert ret.errno == 0



2 changes: 2 additions & 0 deletions tests/integration/harness/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ add_executable(gkfs.io
gkfs.io/unlink.cpp
gkfs.io/access.cpp
gkfs.io/statfs.cpp
gkfs.io/dup_validate.cpp
gkfs.io/syscall_coverage.cpp
)

include(FetchContent)
Expand Down
6 changes: 6 additions & 0 deletions tests/integration/harness/gkfs.io/commands.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,4 +117,10 @@ symlink_init(CLI::App& app);
void
unlink_init(CLI::App& app);

void
dup_validate_init(CLI::App& app);

void
syscall_coverage_init(CLI::App& app);

#endif // IO_COMMANDS_HPP
132 changes: 132 additions & 0 deletions tests/integration/harness/gkfs.io/dup_validate.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,132 @@
/*
Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain
Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany
This software was partially supported by the
EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu).
This software was partially supported by the
ADA-FS project under the SPPEXA project funded by the DFG.
This file is part of GekkoFS.
GekkoFS is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
GekkoFS is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with GekkoFS. If not, see <https://www.gnu.org/licenses/>.
SPDX-License-Identifier: GPL-3.0-or-later
*/

/* C++ includes */
#include <CLI11/CLI11.hpp>
#include <nlohmann/json.hpp>
#include <memory>
#include <fmt/format.h>
#include <commands.hpp>
#include <reflection.hpp>
#include <serialize.hpp>
#include <binary_buffer.hpp>

/* C includes */
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>

using json = nlohmann::json;

struct dup_validate_options {
bool verbose{};
std::string pathname;


REFL_DECL_STRUCT(dup_validate_options, REFL_DECL_MEMBER(bool, verbose),
REFL_DECL_MEMBER(std::string, pathname));
};

struct dup_validate_output {
int retval;
int errnum;

REFL_DECL_STRUCT(dup_validate_output, REFL_DECL_MEMBER(int, retval),
REFL_DECL_MEMBER(int, errnum));
};

void
to_json(json& record, const dup_validate_output& out) {
record = serialize(out);
}

void
dup_validate_exec(const dup_validate_options& opts) {

int fd = ::open(opts.pathname.c_str(), O_WRONLY);

if(fd == -1) {
if(opts.verbose) {
fmt::print(
"dup_validate(pathname=\"{}\") = {}, errno: {} [{}]\n",
opts.pathname, fd, errno, ::strerror(errno));
return;
}

json out = dup_validate_output{fd, errno};
fmt::print("{}\n", out.dump(2));

return;
}


auto rv = ::dup(fd);
auto rv2 = ::dup2(fd, rv);



if(opts.verbose) {
fmt::print(
"dup_validate(pathname=\"{}\") = {}, errno: {} [{}]\n",
opts.pathname, rv, errno, ::strerror(errno));
return;
}

if(rv < 0 || rv2 < 0) {
json out = dup_validate_output{(int) rv, errno};
fmt::print("{}\n", out.dump(2));
return;
}

rv = 0;
errno = 0;
json out = dup_validate_output{(int) rv, errno};
fmt::print("{}\n", out.dump(2));
return;
}

void
dup_validate_init(CLI::App& app) {

// Create the option and subcommand objects
auto opts = std::make_shared<dup_validate_options>();
auto* cmd = app.add_subcommand(
"dup_validate",
"Execute dup, dup2, and dup3 returns 0 if the file descriptor is valid");

// Add options to cmd, binding them to opts
cmd->add_flag("-v,--verbose", opts->verbose,
"Produce human writeable output");

cmd->add_option("pathname", opts->pathname, "File name")
->required()
->type_name("");

cmd->callback([opts]() { dup_validate_exec(*opts); });
}
2 changes: 2 additions & 0 deletions tests/integration/harness/gkfs.io/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ init_commands(CLI::App& app) {
getcwd_validate_init(app);
symlink_init(app);
unlink_init(app);
dup_validate_init(app);
syscall_coverage_init(app);
}


Expand Down
Loading

0 comments on commit 9a9ad69

Please sign in to comment.