Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 4.3.x will end 7 October 2024 (12 months).
  • Bug fixes for security issues in 4.3.x will end 21 April 2025 (18 months).
  • PHP version: minimum PHP 8.0.0 Note: minimum PHP version has increased since Moodle 4.1. PHP 8.2.x is supported too.
   1  <?php
   2  // This file is part of Moodle - http://moodle.org/
   3  //
   4  // Moodle is free software: you can redistribute it and/or modify
   5  // it under the terms of the GNU General Public License as published by
   6  // the Free Software Foundation, either version 3 of the License, or
   7  // (at your option) any later version.
   8  //
   9  // Moodle is distributed in the hope that it will be useful,
  10  // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12  // GNU General Public License for more details.
  13  //
  14  // You should have received a copy of the GNU General Public License
  15  // along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
  16  
  17  namespace factor_grace;
  18  
  19  /**
  20   * Tests for grace factor.
  21   *
  22   * @package     factor_grace
  23   * @author      Peter Burnett <peterburnett@catalyst-au.net>
  24   * @copyright   Catalyst IT
  25   * @license     http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  26   */
  27  class factor_test extends \advanced_testcase {
  28  
  29      /**
  30       * Test affecting factors
  31       *
  32       * @covers ::get_affecting_factors
  33       * @return void
  34       */
  35      public function test_affecting_factors() {
  36          $this->resetAfterTest(true);
  37          $user = $this->getDataGenerator()->create_user();
  38          $this->setUser($user);
  39  
  40          $grace = \tool_mfa\plugininfo\factor::get_factor('grace');
  41          $affecting = $grace->get_affecting_factors();
  42          $this->assertEquals(0, count($affecting));
  43  
  44          set_config('enabled', 1, 'factor_totp');
  45          $totpfactor = \tool_mfa\plugininfo\factor::get_factor('totp');
  46          $totpdata = [
  47              'secret' => 'fakekey',
  48              'devicename' => 'fakedevice',
  49          ];
  50          $totpfactor->setup_user_factor((object) $totpdata);
  51  
  52          // Confirm that MFA is the only affecting factor.
  53          $affecting = $grace->get_affecting_factors();
  54          $this->assertEquals(1, count($affecting));
  55          $totp = reset($affecting);
  56          $this->assertTrue($totp instanceof \factor_totp\factor);
  57  
  58          // Now put it in the ignorelist.
  59          set_config('ignorelist', 'totp', 'factor_grace');
  60          // Confirm that MFA is the only affecting factor.
  61          $affecting = $grace->get_affecting_factors();
  62          $this->assertEquals(0, count($affecting));
  63      }
  64  }