Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change sprintf "%c" to support only Char and Int::Primitive types #15142

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions spec/std/sprintf_spec.cr
Original file line number Diff line number Diff line change
Expand Up @@ -1176,6 +1176,30 @@ describe "::sprintf" do
pending "floats"
end

context "chars" do
it "works" do
assert_sprintf "%c", 'a', "a"
assert_sprintf "%3c", 'R', " R"
assert_sprintf "%-3c", 'L', "L "
assert_sprintf "%c", '▞', "▞"
assert_sprintf "%c", 65, "A"
assert_sprintf "%c", 66_i8, "B"
assert_sprintf "%c", 67_i16, "C"
assert_sprintf "%c", 68_i32, "D"
assert_sprintf "%c", 69_i64, "E"
assert_sprintf "%c", 97_u8, "a"
assert_sprintf "%c", 98_u16, "b"
assert_sprintf "%c", 99_u32, "c"
assert_sprintf "%c", 100_u64, "d"
assert_sprintf "%c", 0x259E, "▞"
end

it "raises if not a Char or Int" do
expect_raises(ArgumentError, "Expected a char or integer") { sprintf("%c", "this") }
expect_raises(ArgumentError, "Expected a char or integer") { sprintf("%c", 17.34) }
end
end

context "strings" do
it "works" do
assert_sprintf "%s", 'a', "a"
Expand Down
6 changes: 6 additions & 0 deletions src/string/formatter.cr
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,12 @@ struct String::Formatter(A)
end

def char(flags, arg) : Nil
if arg.is_a?(Int::Primitive)
arg = arg.chr
end
unless arg.is_a?(Char)
raise ArgumentError.new("Expected a char or integer, not #{arg.inspect}")
end
pad 1, flags if flags.left_padding?
@io << arg
pad 1, flags if flags.right_padding?
Expand Down
Loading