How to use Step class

Best Cucumber Common Library code snippet using Step

class-gf-installation-wizard.php

Source:class-gf-installation-wizard.php Github

copy

Full Screen

...11 foreach ( glob( $path . 'class-gf-installation-wizard-step-*.php' ) as $filename ) {12 require_once( $filename );13 $regex = '/class-gf-installation-wizard-step-(.*?).php/';14 preg_match( $regex, $filename, $matches );15 $class_name = 'GF_Installation_Wizard_Step_' . str_replace( '-', '_', $matches[1] );16 $step = new $class_name;17 $step_name = $step->get_name();18 $classes[ $step_name ] = $class_name;19 }20 $sorted = array();21 foreach ( $this->get_sorted_step_names() as $sorted_step_name ){22 $sorted[ $sorted_step_name ] = $classes[ $sorted_step_name ];23 }24 $this->_step_class_names = $sorted;25 }26 public function get_sorted_step_names(){27 return array(28 'license_key',29 'background_updates',30 'settings',31 'complete',32 );33 }34 public function display(){35 $name = rgpost( '_step_name' );36 $current_step = $this->get_step( $name );37 $nonce_key = '_gform_installation_wizard_step_' . $current_step->get_name();38 if ( isset( $_POST[ $nonce_key ] ) && check_admin_referer( $nonce_key, $nonce_key ) ) {39 if ( rgpost( '_previous' ) ) {40 $posted_values = $current_step->get_posted_values();41 $current_step->update( $posted_values );42 $previous_step = $this->get_previous_step( $current_step );43 if ( $previous_step ) {44 $current_step = $previous_step;45 }46 } elseif ( rgpost( '_next' ) ) {47 $posted_values = $current_step->get_posted_values();48 $current_step->update( $posted_values );49 $validation_result = $current_step->validate();50 $current_step->update();51 if ( $validation_result === true ) {52 $next_step = $this->get_next_step( $current_step );53 if ( $next_step ) {54 $current_step = $next_step;55 }56 }57 } elseif ( rgpost( '_install' ) ) {58 $posted_values = $current_step->get_posted_values();59 $current_step->update( $posted_values );60 $validation_result = $current_step->validate();61 $current_step->update();62 if ( $validation_result === true ) {63 $this->complete_installation();64 $next_step = $this->get_next_step( $current_step );65 if ( $next_step ) {66 $current_step = $next_step;67 }68 }69 }70 $nonce_key = '_gform_installation_wizard_step_' . $current_step->get_name();71 }72 $min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG || isset( $_GET['gform_debug'] ) ? '' : '.min';73 // register admin styles74 wp_register_style( 'gform_admin', GFCommon::get_base_url() . "/css/admin{$min}.css" );75 wp_print_styles( array( 'jquery-ui-styles', 'gform_admin' ) );76 ?>77 <div class="wrap about-wrap gform_installation_progress_step_wrap">78 <h1><?php esc_html_e( 'Welcome to Gravity Forms', 'gravityforms' ) ?></h1>79 <div id="gform_installation_progress">80 <?php $this->progress( $current_step ); ?>81 </div>82 <hr/>83 <br />84 <h2>85 <?php echo $current_step->get_title(); ?>86 </h2>87 <form action="" method="POST">88 <input type="hidden" name="_step_name" value="<?php echo esc_attr( $current_step->get_name() ); ?>"/>89 <?php90 wp_nonce_field( $nonce_key, $nonce_key );91 $validation_summary = $current_step->get_validation_summary();92 if ( $validation_summary ) {93 printf( '<div class="delete-alert alert_red">%s</div>', $validation_summary );94 }95 ?>96 <div class="about-text">97 <?php98 $current_step->display( $current_step );99 ?>100 </div>101 <?php102 if ( $current_step->is( 'settings' ) ) {103 $next_button = sprintf( '<input class="button button-primary" type="submit" value="%s" name="_install"/>', esc_attr( $current_step->get_next_button_text() ) );104 } elseif ( $current_step->is( 'complete' ) ) {105 $next_button = sprintf( '<a class="button button-primary" href="%s">%s</a>', esc_url( admin_url('admin.php?page=gf_new_form') ), esc_attr( $current_step->get_next_button_text() ) );106 } else {107 $next_button = sprintf( '<input class="button button-primary" type="submit" value="%s" name="_next"/>', esc_attr( $current_step->get_next_button_text() ) );108 }109 ?>110 <div>111 <?php112 $previous_button_text = $current_step->get_previous_button_text();113 if ( $previous_button_text ) {114 $previous_button = $this->get_step_index( $current_step ) > 0 ? '<input name="_previous" class="button button-primary" type="submit" value="' . esc_attr( $previous_button_text ) . '" style="margin-right:30px;" />' : '';115 echo $previous_button;116 }117 echo $next_button;118 ?>119 </div>120 </form>121 </div>122 <?php123 return true;124 }125 /**126 * @param bool $name127 *128 * @return GF_Installation_Wizard_Step129 */130 public function get_step( $name = false ){131 if ( empty( $name ) ) {132 $class_names = array_keys( $this->_step_class_names );133 $name = $class_names[0];134 }135 $current_step_values = get_option( 'gform_installation_wizard_' . $name );136 $step = new $this->_step_class_names[ $name ]( $current_step_values );137 return $step;138 }139 /**140 * @param $current_step141 *142 * @return bool|GF_Installation_Wizard_Step143 */144 public function get_previous_step( $current_step ){145 $current_step_name = $current_step->get_name();146 $step_names = array_keys( $this->_step_class_names );147 $i = array_search( $current_step_name, $step_names );148 if ( $i == 0 ) {149 return false;150 }151 $previous_step_name = $step_names[ $i - 1 ];152 return $this->get_step( $previous_step_name );153 }154 /**155 * @param GF_Installation_Wizard_Step $current_step156 *157 * @return bool|GF_Installation_Wizard_Step158 */159 public function get_next_step( $current_step ){160 $current_step_name = $current_step->get_name();161 $step_names = array_keys( $this->_step_class_names );162 $i = array_search( $current_step_name, $step_names );163 if ( $i == count( $step_names ) - 1 ) {164 return false;165 }166 $next_step_name = $step_names[ $i + 1 ];167 return $this->get_step( $next_step_name );168 }169 public function complete_installation(){170 foreach ( array_keys( $this->_step_class_names ) as $step_name ) {171 $step = $this->get_step( $step_name );172 $step->install();173 $step->flush_values();174 }175 delete_option( 'gform_pending_installation' );176 }177 /**178 * @param GF_Installation_Wizard_Step $current_step179 * @param bool $echo180 *181 * @return string182 */183 public function progress( $current_step, $echo = true ){184 $html = '<ul id="gform_installation_progress">';185 $done = true;186 $current_step_name = $current_step->get_name();187 foreach ( array_keys( $this->_step_class_names ) as $step_name ) {188 $class = '';189 $step = $this->get_step( $step_name );190 if ( $current_step_name == $step_name ) {191 $class .= 'gform_installation_progress_current_step ';192 $done = $step->is('complete') ? true : false;193 } else {194 $class .= $done ? 'gform_installation_progress_step_complete' : 'gform_installation_progress_step_pending';195 }196 $check = $done ? '<i class="fa fa-check" style="color:green"></i>' : '<i class="fa fa-check" style="visibility:hidden"></i>';197 $html .= sprintf( '<li id="gform_installation_progress_%s" class="%s">%s&nbsp;%s</li>', esc_attr( $step->get_name() ), esc_attr( $class ), esc_html( $step->get_title() ), $check );198 }199 $html .= '</ul>';200 if ( $echo ) {201 echo $html;202 }203 return $html;204 }205 public function get_step_index( $step ){206 $i = array_search( $step->get_name(), array_keys( $this->_step_class_names ) );207 return $i;208 }209 public function summary(){210 ?>211 <h3>Summary</h3>212 <?php213 echo '<table class="form-table"><tbody>';214 $steps = $this->get_steps();215 foreach ( $steps as $step ) {216 $step_summary = $step->summary( false );217 if ( $step_summary ) {218 printf( '<tr valign="top"><th scope="row"><label>%s</label></th><td>%s</td></tr>', esc_html( $step->get_title() ), $step_summary );219 }220 }221 echo '</tbody></table>';222 }223 /**224 * @return GF_Installation_Wizard_Step[]225 */226 public function get_steps() {227 $steps = array();228 foreach ( array_keys( $this->_step_class_names ) as $step_name ) {229 $steps[] = $this->get_step( $step_name );230 }231 return $steps;232 }233}...

Full Screen

Full Screen

MD5.php

Source:MD5.php Github

copy

Full Screen

1<?php2namespace PhpOffice\PhpSpreadsheet\Reader\Xls;3class MD54{5 // Context6 private $a;7 private $b;8 private $c;9 private $d;10 /**11 * MD5 stream constructor.12 */13 public function __construct()14 {15 $this->reset();16 }17 /**18 * Reset the MD5 stream context.19 */20 public function reset()21 {22 $this->a = 0x67452301;23 $this->b = 0xEFCDAB89;24 $this->c = 0x98BADCFE;25 $this->d = 0x10325476;26 }27 /**28 * Get MD5 stream context.29 *30 * @return string31 */32 public function getContext()33 {34 $s = '';35 foreach (['a', 'b', 'c', 'd'] as $i) {36 $v = $this->{$i};37 $s .= chr($v & 0xff);38 $s .= chr(($v >> 8) & 0xff);39 $s .= chr(($v >> 16) & 0xff);40 $s .= chr(($v >> 24) & 0xff);41 }42 return $s;43 }44 /**45 * Add data to context.46 *47 * @param string $data Data to add48 */49 public function add($data)50 {51 $words = array_values(unpack('V16', $data));52 $A = $this->a;53 $B = $this->b;54 $C = $this->c;55 $D = $this->d;56 $F = ['self', 'f'];57 $G = ['self', 'g'];58 $H = ['self', 'h'];59 $I = ['self', 'i'];60 // ROUND 161 self::step($F, $A, $B, $C, $D, $words[0], 7, 0xd76aa478);62 self::step($F, $D, $A, $B, $C, $words[1], 12, 0xe8c7b756);63 self::step($F, $C, $D, $A, $B, $words[2], 17, 0x242070db);64 self::step($F, $B, $C, $D, $A, $words[3], 22, 0xc1bdceee);65 self::step($F, $A, $B, $C, $D, $words[4], 7, 0xf57c0faf);66 self::step($F, $D, $A, $B, $C, $words[5], 12, 0x4787c62a);67 self::step($F, $C, $D, $A, $B, $words[6], 17, 0xa8304613);68 self::step($F, $B, $C, $D, $A, $words[7], 22, 0xfd469501);69 self::step($F, $A, $B, $C, $D, $words[8], 7, 0x698098d8);70 self::step($F, $D, $A, $B, $C, $words[9], 12, 0x8b44f7af);71 self::step($F, $C, $D, $A, $B, $words[10], 17, 0xffff5bb1);72 self::step($F, $B, $C, $D, $A, $words[11], 22, 0x895cd7be);73 self::step($F, $A, $B, $C, $D, $words[12], 7, 0x6b901122);74 self::step($F, $D, $A, $B, $C, $words[13], 12, 0xfd987193);75 self::step($F, $C, $D, $A, $B, $words[14], 17, 0xa679438e);76 self::step($F, $B, $C, $D, $A, $words[15], 22, 0x49b40821);77 // ROUND 278 self::step($G, $A, $B, $C, $D, $words[1], 5, 0xf61e2562);79 self::step($G, $D, $A, $B, $C, $words[6], 9, 0xc040b340);80 self::step($G, $C, $D, $A, $B, $words[11], 14, 0x265e5a51);81 self::step($G, $B, $C, $D, $A, $words[0], 20, 0xe9b6c7aa);82 self::step($G, $A, $B, $C, $D, $words[5], 5, 0xd62f105d);83 self::step($G, $D, $A, $B, $C, $words[10], 9, 0x02441453);84 self::step($G, $C, $D, $A, $B, $words[15], 14, 0xd8a1e681);85 self::step($G, $B, $C, $D, $A, $words[4], 20, 0xe7d3fbc8);86 self::step($G, $A, $B, $C, $D, $words[9], 5, 0x21e1cde6);87 self::step($G, $D, $A, $B, $C, $words[14], 9, 0xc33707d6);88 self::step($G, $C, $D, $A, $B, $words[3], 14, 0xf4d50d87);89 self::step($G, $B, $C, $D, $A, $words[8], 20, 0x455a14ed);90 self::step($G, $A, $B, $C, $D, $words[13], 5, 0xa9e3e905);91 self::step($G, $D, $A, $B, $C, $words[2], 9, 0xfcefa3f8);92 self::step($G, $C, $D, $A, $B, $words[7], 14, 0x676f02d9);93 self::step($G, $B, $C, $D, $A, $words[12], 20, 0x8d2a4c8a);94 // ROUND 395 self::step($H, $A, $B, $C, $D, $words[5], 4, 0xfffa3942);96 self::step($H, $D, $A, $B, $C, $words[8], 11, 0x8771f681);97 self::step($H, $C, $D, $A, $B, $words[11], 16, 0x6d9d6122);98 self::step($H, $B, $C, $D, $A, $words[14], 23, 0xfde5380c);99 self::step($H, $A, $B, $C, $D, $words[1], 4, 0xa4beea44);100 self::step($H, $D, $A, $B, $C, $words[4], 11, 0x4bdecfa9);101 self::step($H, $C, $D, $A, $B, $words[7], 16, 0xf6bb4b60);102 self::step($H, $B, $C, $D, $A, $words[10], 23, 0xbebfbc70);103 self::step($H, $A, $B, $C, $D, $words[13], 4, 0x289b7ec6);104 self::step($H, $D, $A, $B, $C, $words[0], 11, 0xeaa127fa);105 self::step($H, $C, $D, $A, $B, $words[3], 16, 0xd4ef3085);106 self::step($H, $B, $C, $D, $A, $words[6], 23, 0x04881d05);107 self::step($H, $A, $B, $C, $D, $words[9], 4, 0xd9d4d039);108 self::step($H, $D, $A, $B, $C, $words[12], 11, 0xe6db99e5);109 self::step($H, $C, $D, $A, $B, $words[15], 16, 0x1fa27cf8);110 self::step($H, $B, $C, $D, $A, $words[2], 23, 0xc4ac5665);111 // ROUND 4112 self::step($I, $A, $B, $C, $D, $words[0], 6, 0xf4292244);113 self::step($I, $D, $A, $B, $C, $words[7], 10, 0x432aff97);114 self::step($I, $C, $D, $A, $B, $words[14], 15, 0xab9423a7);115 self::step($I, $B, $C, $D, $A, $words[5], 21, 0xfc93a039);116 self::step($I, $A, $B, $C, $D, $words[12], 6, 0x655b59c3);117 self::step($I, $D, $A, $B, $C, $words[3], 10, 0x8f0ccc92);118 self::step($I, $C, $D, $A, $B, $words[10], 15, 0xffeff47d);119 self::step($I, $B, $C, $D, $A, $words[1], 21, 0x85845dd1);120 self::step($I, $A, $B, $C, $D, $words[8], 6, 0x6fa87e4f);121 self::step($I, $D, $A, $B, $C, $words[15], 10, 0xfe2ce6e0);122 self::step($I, $C, $D, $A, $B, $words[6], 15, 0xa3014314);123 self::step($I, $B, $C, $D, $A, $words[13], 21, 0x4e0811a1);124 self::step($I, $A, $B, $C, $D, $words[4], 6, 0xf7537e82);125 self::step($I, $D, $A, $B, $C, $words[11], 10, 0xbd3af235);126 self::step($I, $C, $D, $A, $B, $words[2], 15, 0x2ad7d2bb);127 self::step($I, $B, $C, $D, $A, $words[9], 21, 0xeb86d391);128 $this->a = ($this->a + $A) & 0xffffffff;129 $this->b = ($this->b + $B) & 0xffffffff;130 $this->c = ($this->c + $C) & 0xffffffff;131 $this->d = ($this->d + $D) & 0xffffffff;132 }133 private static function f($X, $Y, $Z)134 {135 return ($X & $Y) | ((~$X) & $Z); // X AND Y OR NOT X AND Z136 }137 private static function g($X, $Y, $Z)138 {139 return ($X & $Z) | ($Y & (~$Z)); // X AND Z OR Y AND NOT Z140 }141 private static function h($X, $Y, $Z)142 {143 return $X ^ $Y ^ $Z; // X XOR Y XOR Z144 }145 private static function i($X, $Y, $Z)146 {147 return $Y ^ ($X | (~$Z)); // Y XOR (X OR NOT Z)148 }149 private static function step($func, &$A, $B, $C, $D, $M, $s, $t)150 {151 $A = ($A + call_user_func($func, $B, $C, $D) + $M + $t) & 0xffffffff;152 $A = self::rotate($A, $s);153 $A = ($B + $A) & 0xffffffff;154 }155 private static function rotate($decimal, $bits)156 {157 $binary = str_pad(decbin($decimal), 32, '0', STR_PAD_LEFT);158 return bindec(substr($binary, $bits) . substr($binary, 0, $bits));159 }160}...

Full Screen

Full Screen

Step

Using AI Code Generation

copy

Full Screen

1use Cucumber\Step;2use Cucumber\Step;3Step::Given('I am on the homepage', function() {4});5Step::When('I click on the link', function() {6});7Step::Then('I should see the page', function() {8});9Step::Given('I am on the homepage', function() {10});11Step::When('I click on the link', function() {12});13Step::Then('I should see the page', function() {14});15Step::Given('I am on the homepage', function() {16});17Step::When('I click on the link', function() {18});19Step::Then('I should see the page', function() {20});21Step::Given('I am on the homepage', function() {22});23Step::When('I click on the link', function() {24});25Step::Then('I should see the page', function() {26});27Step::Given('I am on the homepage', function() {28});29Step::When('I click on the link', function() {30});31Step::Then('I should see the page', function() {32});33Step::Given('I am on the homepage', function() {34});35Step::When('I click on the link', function() {36});37Step::Then('I should see the page', function() {38});39Step::Given('I am on the homepage', function() {40});41Step::When('I click on the link', function() {42});43Step::Then('I should see the page', function() {44});45Step::Given('I am on the homepage', function() {

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Cucumber Common Library automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Run Selenium Automation Tests on LambdaTest Cloud Grid

Trigger Selenium automation tests on a cloud-based Grid of 3000+ real browsers and operating systems.

Test now for Free

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful