def test_simpleResponse_WithDrPerceptron(self):
        brave = BraveHypothesis()
        wimpy = WimpyHypothesis()
        drP = DrPerceptron()
        self.setUpDecisioner(brave, wimpy, drP)

        # First we will start with the basic training case
        # which is the first 100 in the range
        for i in range(101):
            nonAggro = 0 # this means not aggro
            color = [randint(1, 100)]
            monster = Monster(nonAggro, color, 'passive')

            # Get the guess from the decisioner for the first 100,
            # we expect every guess to be 1
            self.assertTrue(self.decisioner.get_guess(monster.color))
            # Then we will update from this guess
            self.decisioner.update(monster.color, 1, monster.action(True))

        # DrPerceptron should converge pretty quickly and be better than wimpy but not as good as brave
        for i in range(100):
            aggro = 1 # this means aggro
            color = [randint(1, 100)]
            monster = Monster(aggro, color, 'aggressive')

            # Then we will update from this guess
            self.decisioner.update(monster.color, 1, 1)

            self.assertGreater(drP.fitness(), wimpy.fitness())
            self.assertGreater(brave.fitness(), drP.fitness())
    def test_frequencyResponse_forHarmonic_WithDrPerceptron(self):
        brave = BraveHypothesis()
        wimpy = WimpyHypothesis()
        drP = DrPerceptron()
        self.setUpDecisioner(brave, wimpy, drP)

        # First we will start with the basic training case
        # which is the first 100 in the range
        for i in range(101):
            nonAggro = 0 # this means not aggro
            color = [randint(1, 100)]
            monster = Monster(nonAggro, color, 'passive')

            # Get the guess from the decisioner for the first 100,
            # we expect every guess to be 1
            self.assertTrue(self.decisioner.get_guess(monster.color))
            # Then we will update from this guess
            self.decisioner.update(monster.color, 1, monster.action(True))

        # Dr. Perceptron should do better than brave and wimpy
        # when encountering monsters that repeat with a frequency
        # that is trainable given Dr.Perceptron's window size.
        # In otherwords, Dr. Perceptron trains on a frequency of
        # Monsters but training on a pattern is limited to the
        # input size of Dr. Perceptron (which as of this check-in
        # is 5)
        #
        # We test a staggered input with a repeating pattern
        for i in range(1000):
            aggroPattern = [0, 1, 1, 0, 1]
            aggroIdx = i%len(aggroPattern)
            color = [randint(1, 100)]
            monster = Monster(aggroPattern[aggroIdx], color, 'aggressiveish')

            # Then we will update from this guess
            self.decisioner.update(monster.color, aggroPattern[aggroIdx], aggroPattern[aggroIdx])
            # drP should always be better than wimpy
            self.assertGreater(drP.fitness(), wimpy.fitness())

        # after a lot of training for a pattern that is harmonic within the input size Dr.P should beat out brave
        self.assertGreater(drP.fitness(), brave.fitness())
        # Since the pattern is highly regular within the input size, the fitness should be really really close to 1.
        # With great harmony results great trainability and therefore great fitness
        self.assertGreater(drP.fitness(), 0.99)
    def test_frequencyResponse_WithDrPerceptron(self):
        brave = BraveHypothesis()
        wimpy = WimpyHypothesis()
        drP = DrPerceptron()
        self.setUpDecisioner(brave, wimpy, drP)

        # First we will start with the basic training case
        # which is the first 100 in the range
        for i in range(101):
            nonAggro = 0 # this means not aggro
            color = [randint(1, 100)]
            monster = Monster(nonAggro, color, 'passive')

            # Get the guess from the decisioner for the first 100,
            # we expect every guess to be 1
            self.assertTrue(self.decisioner.get_guess(monster.color))
            # Then we will update from this guess
            self.decisioner.update(monster.color, 1, monster.action(True))

        # Dr. Perceptron should do better than brave and wimpy
        # when encountering monsters that repeat with a frequency
        # that is trainable given Dr.Perceptron's window size.
        # In otherwords, Dr. Perceptron trains on a frequency of
        # Monsters but training on a pattern is limited to the
        # input size of Dr. Perceptron (which as of this check-in
        # is 5)
        #
        # We test a staggered input
        for i in range(10):
            aggro = 1 # this means aggro
            passive = 0 # this means aggro
            evenMonstersPassive = i%2
            color = [randint(1, 100)]
            monster = Monster(evenMonstersPassive, color, 'aggressiveish')

            # Then we will update from this guess
            self.decisioner.update(monster.color, evenMonstersPassive, evenMonstersPassive)
            # drP should always be better than wimpy
            self.assertGreater(drP.fitness(), wimpy.fitness())

        # after 2 sets of 5 inputs drP should be better than brave
        self.assertGreater(drP.fitness(), brave.fitness())
 def setUp(self):
     self._hypothesis = DrPerceptron()
class DrPerceptronHypothesisTest(unittest.TestCase):
    def setUp(self):
        self._hypothesis = DrPerceptron()

    def tearDown(self):
        self._hypothesis = None

    def test_attacked_bad(self):
        """Perceptron: Test the aggro == bad case"""
        for i in range(100):
            self._hypothesis.update([1], 1, -1)
        trainedGuess = self._hypothesis.get_guess([1])
        # print ('DRPERCEPTRON: test_attacked_bad TrainedGuess: '+str(trainedGuess))
        # print (str(self._hypothesis))
        self.assertTrue(trainedGuess == False)

    def test_attacked_good(self):
        """Perceptron: Test the non aggro == good case"""
        for i in range(100):
            self._hypothesis.update([1], 1, 1)
        trainedGuess = self._hypothesis.get_guess([1])
        # print ('DRPERCEPTRON: test_attacked_good TrainedGuess: '+str(trainedGuess))
        # print (str(self._hypothesis))
        self.assertTrue(trainedGuess == True)

    def test_attacked_bad_randoWeights(self):
        """Perceptron: Randomize the weights: Test the aggro == bad case"""
        self._hypothesis._randoWeights()
        for i in range(100):
            self._hypothesis.update([1], 1, -1)
        trainedGuess = self._hypothesis.get_guess([1])
        # print ('DRPERCEPTRON: test_attacked_bad TrainedGuess: '+str(trainedGuess))
        # print (str(self._hypothesis))
        self.assertTrue(trainedGuess == False)

    def test_attacked_good_randoWeights(self):
        """Perceptron: Randomize the weights: Test the non aggro == good case"""
        self._hypothesis._randoWeights()
        for i in range(100):
            self._hypothesis.update([1], 1, 1)
        trainedGuess = self._hypothesis.get_guess([1])
        # print ('DRPERCEPTRON: test_attacked_good TrainedGuess: '+str(trainedGuess))
        # print (str(self._hypothesis))
        self.assertTrue(trainedGuess == True)
 def setUp(self):
     self._hypothesis = DrPerceptron()
class DrPerceptronHypothesisTest(unittest.TestCase):
    def setUp(self):
        self._hypothesis = DrPerceptron()

    def tearDown(self):
        self._hypothesis = None

    def test_attacked_bad(self):
        """Perceptron: Test the aggro == bad case"""
        for i in range(100):
            self._hypothesis.update([1], 1, -1)
        trainedGuess = self._hypothesis.get_guess([1])
        #print ('DRPERCEPTRON: test_attacked_bad TrainedGuess: '+str(trainedGuess))
        #print (str(self._hypothesis))
        self.assertTrue(trainedGuess == False)

    def test_attacked_good(self):
        """Perceptron: Test the non aggro == good case"""
        for i in range(100):
            self._hypothesis.update([1], 1, 1)
        trainedGuess = self._hypothesis.get_guess([1])
        #print ('DRPERCEPTRON: test_attacked_good TrainedGuess: '+str(trainedGuess))
        #print (str(self._hypothesis))
        self.assertTrue(trainedGuess == True)

    def test_attacked_bad_randoWeights(self):
        """Perceptron: Randomize the weights: Test the aggro == bad case"""
        self._hypothesis._randoWeights()
        for i in range(100):
            self._hypothesis.update([1], 1, -1)
        trainedGuess = self._hypothesis.get_guess([1])
        #print ('DRPERCEPTRON: test_attacked_bad TrainedGuess: '+str(trainedGuess))
        #print (str(self._hypothesis))
        self.assertTrue(trainedGuess == False)

    def test_attacked_good_randoWeights(self):
        """Perceptron: Randomize the weights: Test the non aggro == good case"""
        self._hypothesis._randoWeights()
        for i in range(100):
            self._hypothesis.update([1], 1, 1)
        trainedGuess = self._hypothesis.get_guess([1])
        #print ('DRPERCEPTRON: test_attacked_good TrainedGuess: '+str(trainedGuess))
        #print (str(self._hypothesis))
        self.assertTrue(trainedGuess == True)