]> Kevux Git Server - kevux-tools/commit
Progress: Continue working on completing the remove program.
authorKevin Day <Kevin@kevux.org>
Tue, 18 Mar 2025 23:05:38 +0000 (18:05 -0500)
committerKevin Day <Kevin@kevux.org>
Wed, 19 Mar 2025 02:25:11 +0000 (21:25 -0500)
commit39d1578b020a27884e35690253b10acc23f9d4fc
treefb24ea749162ba29ecdb3e427f62e65ae11252a7
parentbf990a10a2c24f6304bb04dc2569765abb5b2347
Progress: Continue working on completing the remove program.

I forgot to perform the `git add` for the previous commit bf990a10a2c24f6304bb04dc2569765abb5b2347.

This includes changes that were supposed to be in that commit.

Add file type based program unit tests.
Add user based program unit tests.
Add group based program unit tests.

Fix bug exposed by the program unit tests where the id tests are only being performed as a group test even when it needs to be a user test.
This is fixed by creating and passing the `is_user` boolean to the functions.

Fix bug exposed by the program unit tests where the `--same` and `--different` boolean logic is reversed resulting in `--same` removing for different users and `--different` removing for the same user.
28 files changed:
data/build/remove/settings-mocks.remove
data/build/remove/settings-tests.remove
sources/c/program/kevux/tools/remove/main/common.c
sources/c/program/kevux/tools/remove/main/common.h
sources/c/program/kevux/tools/remove/main/common/define.h
sources/c/program/kevux/tools/remove/main/common/enumeration.h
sources/c/program/kevux/tools/remove/main/common/string.c
sources/c/program/kevux/tools/remove/main/common/string.h
sources/c/program/kevux/tools/remove/main/common/type.c
sources/c/program/kevux/tools/remove/main/operate.c
sources/c/program/kevux/tools/remove/main/operate.h
sources/c/program/kevux/tools/remove/main/preprocess.c
sources/c/program/kevux/tools/remove/main/print/message.c
sources/c/program/kevux/tools/remove/main/print/simulate.c
tests/unit/remove/c/mock-remove.c
tests/unit/remove/c/mock-remove.h
tests/unit/remove/c/test-remove-directory_no_args.c
tests/unit/remove/c/test-remove-directory_tree_simple.c
tests/unit/remove/c/test-remove-directory_tree_simple.h
tests/unit/remove/c/test-remove-file_type.c [new file with mode: 0644]
tests/unit/remove/c/test-remove-file_type.h [new file with mode: 0644]
tests/unit/remove/c/test-remove-group.c [new file with mode: 0644]
tests/unit/remove/c/test-remove-group.h [new file with mode: 0644]
tests/unit/remove/c/test-remove-regular_no_args.c
tests/unit/remove/c/test-remove-user.c [new file with mode: 0644]
tests/unit/remove/c/test-remove-user.h [new file with mode: 0644]
tests/unit/remove/c/test-remove.c
tests/unit/remove/c/test-remove.h