Add benchmarks about subtype and coercion
[gitmo/Mouse.git] / benchmarks / coercion.pl
diff --git a/benchmarks/coercion.pl b/benchmarks/coercion.pl
new file mode 100755 (executable)
index 0000000..a473303
--- /dev/null
@@ -0,0 +1,58 @@
+#!perl
+use strict;
+use warnings;
+use Benchmark qw/cmpthese/;
+
+
+for my $klass (qw/Moose Mouse/) {
+    eval qq{
+        package ${klass}One;
+        use $klass;\r
+        use ${klass}::Util::TypeConstraints;
+\r
+        subtype 'NaturalNumber', as 'Int', where { \$_ > 0 };
+
+        coerce 'NaturalNumber',
+            from 'Str', via { 42 },
+        ;\r
+\r
+        has n => (
+            is     => 'rw',
+            isa    => 'NaturalNumber',
+            coerce => 1,
+        );
+        no $klass;
+        __PACKAGE__->meta->make_immutable;
+    };
+    die $@ if $@;
+}
+
+print "Class::MOP: $Class::MOP::VERSION\n";
+print "Moose:      $Moose::VERSION\n";
+print "Mouse:      $Mouse::VERSION\n";
+print "---- new\n";
+cmpthese(
+    -1 => {
+        map { my $x = $_; $_ => sub { $x->new(n => 'foo') } }
+        map { "${_}One" }
+        qw/Moose Mouse/
+    }
+);
+
+print "---- new,set\n";
+cmpthese(
+    -1 => {
+        map { my $y = $_; $_ => sub { $y->new(n => 'foo')->n('bar') } }
+        map { "${_}One" }
+        qw/Moose Mouse/
+    }
+);
+
+print "---- set\n";
+my %c = map { $_ => "${_}One"->new(n => 'foo') } qw/Moose Mouse/;
+cmpthese(
+    -1 => {
+        map { my $y = $_; $_ => sub { $c{$y}->n('bar') } }
+        qw/Moose Mouse/
+    }
+);