Skip to content

Commit

Permalink
tester: add LoadBigSixel() from waveplate #2784
Browse files Browse the repository at this point in the history
  • Loading branch information
dankamongmen committed Jun 11, 2024
1 parent 6fb36a9 commit 21429da
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/tests/sixels.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ TEST_CASE("Sixels") {
ncvisual_destroy(ncv);
}

SUBCASE("LoadBigSixel") {
auto ncv = ncvisual_from_sixel("\x1bPq\"1;1;22;14#0;2;9;13;13#1;2;9;16;19#2;2;16;22;25#3;2;53;56;56#4;2;66;63;60#5;2;72;75;69#6;2;69;72;66#7;2;60;63;63#8;2;35;41;44#9;2;28;35;35#10;2;25;28;28#11;2;19;22;25#12;2;0;0;0#13;2;16;19;22#14;2;31;38;38#15;2;63;66;66#16;2;19;25;28#17;2;3;3;6#18;2;47;50;50#19;2;69;72;72#20;2;25;31;31#21;2;6;9;13#22;2;47;47;47#23;2;6;13;19#24;2;47;53;50#25;2;19;19;19#26;2;6;6;13#27;2;44;41;38#28;2;56;53;53#29;2;50;47;47#30;2;19;16;16#31;2;47;50;47#32;2;63;60;56#33;2;47;47;44#34;2;25;25;28#35;2;35;31;31#36;2;53;50;50#37;2;6;3;6#1eLB#14A!7?_K???GO#12@^~~$#0H#13qK#18C???_!6?_#11BDC#0G#26_$#23O#20?_!9?_OC#2?A#13AO$#16??O#3G@??O_?U#22G???_O#25__$#7???O!6?H#8V?_WG#1?@#17A$#4???__@#15o?]M#24_!4?O#21??C$#2???@#5[[FB?o#9??RN#10@C_G$#6!4?Aa??@@#16!4?A$#19!6?GK-#0KO!4?G!6?oG?`X???C$#1@B#10_??_?G???GwCA!4?C#12_`$#21o#13K???G#30oo!5?GCA??F`#1K$#23A#17_#22O?CC??@??A?A#17_G!4?PQ$#27??@!4?CgG#3A#20?@!5?_O$#28??KH??@A?_#8??A@@#11DC_#25GA$#31??A#4_?A#35C?O??o#37??OO#21W???AG$#32???U#14O!6?@C!6?G$#9!4?G!6?C#26???_#34AAO$#29!4?`@#33A?CCG#13!6?C$#5!4?A#25O#24?@#18A?D$#36!9?Oo$#7!9?B-#0B?@#8@A#36@#27@!4?A#10A??AA@#17A@$?BA#1A#32@A??@AA#35@#34@#11BB#13@@A@#12ABB$#28!6?AA?@@$#29!7?@#4A\x1b\\", 18, 22);
REQUIRE(ncv);
ncvisual_destroy(ncv);
}

// remaining tests can only run with a Sixel backend
if(notcurses_check_pixel_support(nc_) <= 0){
CHECK(0 == notcurses_stop(nc_));
Expand All @@ -44,7 +50,6 @@ TEST_CASE("Sixels") {
CHECK(0 == notcurses_stop(nc_));
return;
}

#ifdef NOTCURSES_USE_MULTIMEDIA
SUBCASE("SixelRoundtrip") {
CHECK(1 == ncplane_set_base(n_, "&", 0, 0));
Expand Down

0 comments on commit 21429da

Please sign in to comment.