1# 2# SPDX-License-Identifier: BSD-2-Clause 3# 4# Copyright 2023 (C) Enji Cooper 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions 8# are met: 9# 1. Redistributions of source code must retain the above copyright 10# notice, this list of conditions and the following disclaimer. 11# 2. Redistributions in binary form must reproduce the above copyright 12# notice, this list of conditions and the following disclaimer in the 13# documentation and/or other materials provided with the distribution. 14# 15# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 19# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25# SUCH DAMAGE. 26 27atf_test_case float_non_prime 28float_non_prime_head() 29{ 30 atf_set "descr" "Test with a float non-prime number" 31} 32float_non_prime_body() 33{ 34 atf_check -o inline:"1: 1\n" factor 1.44 35} 36 37atf_test_case float_prime 38float_prime_head() 39{ 40 atf_set "descr" "Test with a float prime number" 41} 42float_prime_body() 43{ 44 pi="3.141592653589793238462643383279502884197" 45 atf_check -o inline:"3: 3\n" factor $pi 46} 47 48atf_test_case int_non_prime 49int_non_prime_head() 50{ 51 atf_set "descr" "Test with an integral prime number" 52} 53int_non_prime_body() 54{ 55 atf_check -o inline:"8: 2 2 2\n" factor 8 56} 57 58atf_test_case int_prime 59int_prime_head() 60{ 61 atf_set "descr" "Test with an integral prime number" 62} 63int_prime_body() 64{ 65 atf_check -o inline:"31: 31\n" factor 31 66} 67 68atf_test_case negative_numbers_not_allowed 69negative_numbers_not_allowed_head() 70{ 71 atf_set "descr" "Verify that negative numbers are not allowed." 72} 73negative_numbers_not_allowed_body() 74{ 75 atf_check -s not-exit:0 -e inline:"factor: negative numbers aren't permitted.\n" factor -- -4 76} 77 78atf_init_test_cases() 79{ 80 atf_add_test_case float_non_prime 81 atf_add_test_case float_prime 82 atf_add_test_case int_non_prime 83 atf_add_test_case int_prime 84 atf_add_test_case negative_numbers_not_allowed 85} 86