mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 04:12:13 +00:00
commit
b5bf97e5a9
74
perl/GildedRose.pm
Normal file
74
perl/GildedRose.pm
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
package GildedRose;
|
||||||
|
|
||||||
|
use strict;
|
||||||
|
use warnings;
|
||||||
|
|
||||||
|
sub new {
|
||||||
|
my ( $class, %attrs ) = @_;
|
||||||
|
return bless \%attrs, $class;
|
||||||
|
}
|
||||||
|
|
||||||
|
sub update_quality {
|
||||||
|
my $self = shift;
|
||||||
|
for my $item ( @{ $self->{items} } ) {
|
||||||
|
if ( $item->{name} ne 'Aged Brie'
|
||||||
|
&& $item->{name} ne 'Backstage passes to a TAFKAL80ETC concert' )
|
||||||
|
{
|
||||||
|
if ( $item->{quality} > 0 ) {
|
||||||
|
if ( $item->{name} ne 'Sulfuras, Hand of Ragnaros' ) {
|
||||||
|
$item->{quality} = $item->{quality} - 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
if ( $item->{quality} < 50 ) {
|
||||||
|
$item->{quality} = $item->{quality} + 1;
|
||||||
|
|
||||||
|
if ( $item->{name} eq
|
||||||
|
'Backstage passes to a TAFKAL80ETC concert' )
|
||||||
|
{
|
||||||
|
if ( $item->{sell_in} < 11 ) {
|
||||||
|
if ( $item->{quality} < 50 ) {
|
||||||
|
$item->{quality} = $item->{quality} + 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( $item->{sell_in} < 6 ) {
|
||||||
|
if ( $item->{quality} < 50 ) {
|
||||||
|
$item->{quality} = $item->{quality} + 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( $item->{name} ne 'Sulfuras, Hand of Ragnaros' ) {
|
||||||
|
$item->{sell_in} = $item->{sell_in} - 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( $item->{sell_in} < 0 ) {
|
||||||
|
if ( $item->{name} ne 'Aged Brie' ) {
|
||||||
|
if ( $item->{name} ne
|
||||||
|
'Backstage passes to a TAFKAL80ETC concert' )
|
||||||
|
{
|
||||||
|
if ( $item->{quality} > 0 ) {
|
||||||
|
if ( $item->{name} ne 'Sulfuras, Hand of Ragnaros' ) {
|
||||||
|
$item->{quality} = $item->{quality} - 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$item->{quality} = $item->{quality} - $item->{quality};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
if ( $item->{quality} < 50 ) {
|
||||||
|
$item->{quality} = $item->{quality} + 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
1;
|
||||||
16
perl/Item.pm
Normal file
16
perl/Item.pm
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
package Item;
|
||||||
|
|
||||||
|
use strict;
|
||||||
|
use warnings;
|
||||||
|
|
||||||
|
sub new {
|
||||||
|
my ( $class, %attrs ) = @_;
|
||||||
|
return bless \%attrs, $class;
|
||||||
|
}
|
||||||
|
|
||||||
|
sub to_string {
|
||||||
|
my ($self) = @_;
|
||||||
|
return $self->{name} . ', ' . $self->{sell_in} . ', ' . $self->{quality};
|
||||||
|
}
|
||||||
|
|
||||||
|
1;
|
||||||
18
perl/test.pl
Executable file
18
perl/test.pl
Executable file
@ -0,0 +1,18 @@
|
|||||||
|
#!/usr/bin/env perl
|
||||||
|
|
||||||
|
use strict;
|
||||||
|
use warnings;
|
||||||
|
|
||||||
|
use Test::More 0.96;
|
||||||
|
|
||||||
|
use_ok 'GildedRose';
|
||||||
|
use_ok 'Item';
|
||||||
|
|
||||||
|
subtest 'foo' => sub {
|
||||||
|
my $items = [ Item->new( name => 'foo', sell_in => 0, quality => 0 ) ];
|
||||||
|
my $app = GildedRose->new( items => $items );
|
||||||
|
$app->update_quality();
|
||||||
|
is( $app->{items}->[0]->{name}, 'fixme' );
|
||||||
|
};
|
||||||
|
|
||||||
|
done_testing();
|
||||||
72
perl/texttest_fixture.pl
Executable file
72
perl/texttest_fixture.pl
Executable file
@ -0,0 +1,72 @@
|
|||||||
|
#!/usr/bin/env perl
|
||||||
|
|
||||||
|
use strict;
|
||||||
|
use warnings;
|
||||||
|
|
||||||
|
use GildedRose;
|
||||||
|
use Item;
|
||||||
|
|
||||||
|
print 'OMGHAI!', "\n";
|
||||||
|
my $items = [
|
||||||
|
Item->new(
|
||||||
|
name => '+5 Dexterity Vest',
|
||||||
|
sell_in => 10,
|
||||||
|
quality => 20
|
||||||
|
),
|
||||||
|
Item->new(
|
||||||
|
name => 'Aged Brie',
|
||||||
|
sell_in => 2,
|
||||||
|
quality => 0
|
||||||
|
),
|
||||||
|
Item->new(
|
||||||
|
name => 'Elixir of the Mongoose',
|
||||||
|
sell_in => 5,
|
||||||
|
quality => 7
|
||||||
|
),
|
||||||
|
Item->new(
|
||||||
|
name => 'Sulfuras, Hand of Ragnaros',
|
||||||
|
sell_in => 0,
|
||||||
|
quality => 80
|
||||||
|
),
|
||||||
|
Item->new(
|
||||||
|
name => 'Sulfuras, Hand of Ragnaros',
|
||||||
|
sell_in => -1,
|
||||||
|
quality => 80
|
||||||
|
),
|
||||||
|
Item->new(
|
||||||
|
name => 'Backstage passes to a TAFKAL80ETC concert',
|
||||||
|
sell_in => 15,
|
||||||
|
quality => 20
|
||||||
|
),
|
||||||
|
Item->new(
|
||||||
|
name => 'Backstage passes to a TAFKAL80ETC concert',
|
||||||
|
sell_in => 10,
|
||||||
|
quality => 49
|
||||||
|
),
|
||||||
|
Item->new(
|
||||||
|
name => 'Backstage passes to a TAFKAL80ETC concert',
|
||||||
|
sell_in => 5,
|
||||||
|
quality => 49
|
||||||
|
),
|
||||||
|
Item->new( # This Conjured item does not work properly yet
|
||||||
|
name => 'Conjured Mana Cake',
|
||||||
|
sell_in => 3,
|
||||||
|
quality => 6
|
||||||
|
),
|
||||||
|
];
|
||||||
|
|
||||||
|
my $days = 2;
|
||||||
|
if ( $#ARGV >= 0 ) {
|
||||||
|
$days = $ARGV[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
my $gilded_rose = GildedRose->new( items => $items );
|
||||||
|
for my $day ( 0 .. $days ) {
|
||||||
|
print "-------- day $day --------", "\n";
|
||||||
|
print 'name, sellIn, quality', "\n";
|
||||||
|
for my $item ( @{$items} ) {
|
||||||
|
print $item->to_string(), "\n";
|
||||||
|
}
|
||||||
|
print "\n";
|
||||||
|
$gilded_rose->update_quality();
|
||||||
|
}
|
||||||
@ -22,6 +22,10 @@ interpreter:java
|
|||||||
# Settings for the C# version
|
# Settings for the C# version
|
||||||
#executable:${TEXTTEST_CHECKOUT}/GildedRose.exe
|
#executable:${TEXTTEST_CHECKOUT}/GildedRose.exe
|
||||||
|
|
||||||
|
# Settings for the Perl version
|
||||||
|
#executable:${TEXTTEST_CHECKOUT}/perl/texttest_fixture.pl
|
||||||
|
#interpreter:perl
|
||||||
|
|
||||||
# turn on one of these if you prefer them to notepad or emacs.
|
# turn on one of these if you prefer them to notepad or emacs.
|
||||||
[view_program]
|
[view_program]
|
||||||
*:mate
|
*:mate
|
||||||
|
|||||||
@ -1,2 +1,3 @@
|
|||||||
# If your .class files are somewhere else, add the path to the list
|
# If your .class files are somewhere else, add the path to the list
|
||||||
CLASSPATH:${TEXTTEST_CHECKOUT}/Java:${TEXTTEST_CHECKOUT}/Java/bin
|
CLASSPATH:${TEXTTEST_CHECKOUT}/Java:${TEXTTEST_CHECKOUT}/Java/bin
|
||||||
|
PERL5OPT:-I${TEXTTEST_CHECKOUT}/perl
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user