From fd008b9e5b0d7a8e701db0d3771fb2be932af273 Mon Sep 17 00:00:00 2001
From: Jaime Perez Crespo <jaime.perez@uninett.no>
Date: Fri, 26 Feb 2016 10:14:21 +0100
Subject: [PATCH] Fix broken test in AttributeValueMapTest.

---
 .../core/lib/Auth/Process/AttributeValueMapTest.php      | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/tests/modules/core/lib/Auth/Process/AttributeValueMapTest.php b/tests/modules/core/lib/Auth/Process/AttributeValueMapTest.php
index 5c0d7a86f..c0deaf8aa 100644
--- a/tests/modules/core/lib/Auth/Process/AttributeValueMapTest.php
+++ b/tests/modules/core/lib/Auth/Process/AttributeValueMapTest.php
@@ -159,13 +159,13 @@ class AttributeValueMapTest extends \PHPUnit_Framework_TestCase
      *
      * @covers SimpleSAML\Module\core\Auth\Process\AttributeValueMap::__construct
      * @covers SimpleSAML\Module\core\Auth\Process\AttributeValueMap::process
-     *
-     * @expectedException \Exception
      */
     public function testUnknownFlag()
     {
         $config = array(
             '%test',
+            'targetattribute' => 'affiliation',
+            'sourceattribute' => 'memberOf',
             'values' => array(
                 'member' => array(
                     'theGroup',
@@ -177,7 +177,10 @@ class AttributeValueMapTest extends \PHPUnit_Framework_TestCase
                 'memberOf' => array('theGroup'),
             ),
         );
-        self::processFilter($config, $request);
+        $result = self::processFilter($config, $request);
+        $this->assertArrayHasKey('affiliation', $result['Attributes']);
+        $this->assertArrayNotHasKey('memberOf', $result['Attributes']);
+        $this->assertContains('member', $result['Attributes']['affiliation']);
     }
 
 
-- 
GitLab