@@ -941,23 +941,11 @@ bool progressCallback(void* userPtr, double n)
941
941
return n < progress->nMax ; // cancel if reached nMax
942
942
}
943
943
944
- void progressTest (DeviceRef& device, double nMax = 1000 )
944
+ void progressTest (DeviceRef& device, FilterRef& filter, double nMax = 1000 )
945
945
{
946
- const int W = 1283 ;
947
- const int H = 727 ;
948
-
949
- FilterRef filter = device.newFilter (" RT" );
950
- REQUIRE (bool (filter));
951
-
952
- auto image = makeConstImage (device, W, H);
953
- setFilterImage (filter, " color" , image);
954
- setFilterImage (filter, " output" , image); // in-place
955
-
956
946
Progress progress (nMax);
957
947
filter.setProgressMonitorFunction (progressCallback, &progress);
958
948
959
- filter.set (" maxMemoryMB" , 0 ); // make sure there will be multiple tiles
960
-
961
949
filter.commit ();
962
950
REQUIRE (device.getError () == Error::None);
963
951
@@ -968,8 +956,7 @@ void progressTest(DeviceRef& device, double nMax = 1000)
968
956
// Execution should be cancelled but it's not guaranteed
969
957
Error error = device.getError ();
970
958
REQUIRE ((error == Error::None || error == Error::Cancelled));
971
- // Check whether the callback has not been called after requesting cancellation
972
- REQUIRE (progress.n >= nMax);
959
+ REQUIRE ((progress.n >= nMax && progress.n <= 1 ));
973
960
}
974
961
else
975
962
{
@@ -981,26 +968,50 @@ void progressTest(DeviceRef& device, double nMax = 1000)
981
968
982
969
TEST_CASE (" progress monitor" , " [progress]" )
983
970
{
971
+ const int W = 1283 ;
972
+ const int H = 727 ;
973
+
984
974
DeviceRef device = makeAndCommitDevice ();
985
975
986
- SECTION (" progress monitor: complete" )
976
+ FilterRef filter = device.newFilter (" RT" );
977
+ REQUIRE (bool (filter));
978
+
979
+ auto image = makeConstImage (device, W, H);
980
+ setFilterImage (filter, " color" , image);
981
+ setFilterImage (filter, " output" , image); // in-place
982
+
983
+ filter.set (" maxMemoryMB" , 0 ); // make sure there will be multiple tiles
984
+
985
+ SECTION (" progress monitor: finish" )
987
986
{
988
- progressTest (device);
987
+ progressTest (device, filter );
989
988
}
990
989
991
990
SECTION (" progress monitor: cancel at the middle" )
992
991
{
993
- progressTest (device, 0.5 );
992
+ progressTest (device, filter, 0.5 );
994
993
}
995
994
996
995
SECTION (" progress monitor: cancel at the beginning" )
997
996
{
998
- progressTest (device, 0 );
997
+ progressTest (device, filter, 0 );
999
998
}
1000
999
1001
1000
SECTION (" progress monitor: cancel at the end" )
1002
1001
{
1003
- progressTest (device, 1 );
1002
+ progressTest (device, filter, 1 );
1003
+ }
1004
+
1005
+ SECTION (" progress monitor: cancel around the middle, finish" )
1006
+ {
1007
+ progressTest (device, filter, 0.4 );
1008
+ progressTest (device, filter);
1009
+ }
1010
+
1011
+ SECTION (" progress monitor: finish, cancel around the middle" )
1012
+ {
1013
+ progressTest (device, filter);
1014
+ progressTest (device, filter, 0.6 );
1004
1015
}
1005
1016
}
1006
1017
0 commit comments