Changeset 55986 for trunk/tests/phpunit/tests/theme/wpThemeJson.php
- Timestamp:
- 06/22/2023 08:42:42 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/theme/wpThemeJson.php
r55985 r55986 4778 4778 4779 4779 } 4780 4781 public function test_resolve_variables() { 4782 $primary_color = '#9DFF20'; 4783 $secondary_color = '#9DFF21'; 4784 $contrast_color = '#000'; 4785 $raw_color_value = '#efefef'; 4786 $large_font = '18px'; 4787 $small_font = '12px'; 4788 $theme_json = new WP_Theme_JSON( 4789 array( 4790 'version' => WP_Theme_JSON::LATEST_SCHEMA, 4791 'settings' => array( 4792 'color' => array( 4793 'palette' => array( 4794 'theme' => array( 4795 array( 4796 'color' => $primary_color, 4797 'name' => 'Primary', 4798 'slug' => 'primary', 4799 ), 4800 array( 4801 'color' => $secondary_color, 4802 'name' => 'Secondary', 4803 'slug' => 'secondary', 4804 ), 4805 array( 4806 'color' => $contrast_color, 4807 'name' => 'Contrast', 4808 'slug' => 'contrast', 4809 ), 4810 ), 4811 ), 4812 ), 4813 'typography' => array( 4814 'fontSizes' => array( 4815 array( 4816 'size' => $small_font, 4817 'name' => 'Font size small', 4818 'slug' => 'small', 4819 ), 4820 array( 4821 'size' => $large_font, 4822 'name' => 'Font size large', 4823 'slug' => 'large', 4824 ), 4825 ), 4826 ), 4827 ), 4828 'styles' => array( 4829 'color' => array( 4830 'background' => 'var(--wp--preset--color--primary)', 4831 'text' => $raw_color_value, 4832 ), 4833 'elements' => array( 4834 'button' => array( 4835 'color' => array( 4836 'text' => 'var(--wp--preset--color--contrast)', 4837 ), 4838 'typography' => array( 4839 'fontSize' => 'var(--wp--preset--font-size--small)', 4840 ), 4841 ), 4842 ), 4843 'blocks' => array( 4844 'core/post-terms' => array( 4845 'typography' => array( 'fontSize' => 'var(--wp--preset--font-size--small)' ), 4846 'color' => array( 'background' => $raw_color_value ), 4847 ), 4848 'core/more' => array( 4849 'typography' => array( 'fontSize' => 'var(--undefined--font-size--small)' ), 4850 'color' => array( 'background' => 'linear-gradient(90deg, var(--wp--preset--color--primary) 0%, var(--wp--preset--color--secondary) 35%, var(--wp--undefined--color--secondary) 100%)' ), 4851 ), 4852 'core/comment-content' => array( 4853 'typography' => array( 'fontSize' => 'calc(var(--wp--preset--font-size--small, 12px) + 20px)' ), 4854 'color' => array( 4855 'text' => 'var(--wp--preset--color--primary, red)', 4856 'background' => 'var(--wp--preset--color--primary, var(--wp--preset--font-size--secondary))', 4857 'link' => 'var(--undefined--color--primary, var(--wp--preset--font-size--secondary))', 4858 ), 4859 ), 4860 'core/comments' => array( 4861 'color' => array( 4862 'text' => 'var(--undefined--color--primary, var(--wp--preset--font-size--small))', 4863 'background' => 'var(--wp--preset--color--primary, var(--undefined--color--primary))', 4864 ), 4865 ), 4866 'core/navigation' => array( 4867 'elements' => array( 4868 'link' => array( 4869 'color' => array( 4870 'background' => 'var(--wp--preset--color--primary)', 4871 'text' => 'var(--wp--preset--color--secondary)', 4872 ), 4873 'typography' => array( 4874 'fontSize' => 'var(--wp--preset--font-size--large)', 4875 ), 4876 ), 4877 ), 4878 ), 4879 'core/quote' => array( 4880 'typography' => array( 'fontSize' => 'var(--wp--preset--font-size--large)' ), 4881 'color' => array( 'background' => 'var(--wp--preset--color--primary)' ), 4882 'variations' => array( 4883 'plain' => array( 4884 'typography' => array( 'fontSize' => 'var(--wp--preset--font-size--small)' ), 4885 'color' => array( 'background' => 'var(--wp--preset--color--secondary)' ), 4886 ), 4887 ), 4888 ), 4889 ), 4890 ), 4891 ) 4892 ); 4893 4894 $styles = $theme_json::resolve_variables( $theme_json )->get_raw_data()['styles']; 4895 4896 $this->assertEquals( $primary_color, $styles['color']['background'], 'Top level: Assert values are converted' ); 4897 $this->assertEquals( $raw_color_value, $styles['color']['text'], 'Top level: Assert raw values stay intact' ); 4898 4899 $this->assertEquals( $contrast_color, $styles['elements']['button']['color']['text'], 'Elements: color' ); 4900 $this->assertEquals( $small_font, $styles['elements']['button']['typography']['fontSize'], 'Elements: font-size' ); 4901 4902 $this->assertEquals( $large_font, $styles['blocks']['core/quote']['typography']['fontSize'], 'Blocks: font-size' ); 4903 $this->assertEquals( $primary_color, $styles['blocks']['core/quote']['color']['background'], 'Blocks: color' ); 4904 $this->assertEquals( $raw_color_value, $styles['blocks']['core/post-terms']['color']['background'], 'Blocks: Raw color value stays intact' ); 4905 $this->assertEquals( $small_font, $styles['blocks']['core/post-terms']['typography']['fontSize'], 'Block core/post-terms: font-size' ); 4906 $this->assertEquals( 4907 "linear-gradient(90deg, $primary_color 0%, $secondary_color 35%, var(--wp--undefined--color--secondary) 100%)", 4908 $styles['blocks']['core/more']['color']['background'], 4909 'Blocks: multiple colors and undefined color' 4910 ); 4911 $this->assertEquals( 'var(--undefined--font-size--small)', $styles['blocks']['core/more']['typography']['fontSize'], 'Blocks: undefined font-size ' ); 4912 $this->assertEquals( "calc($small_font + 20px)", $styles['blocks']['core/comment-content']['typography']['fontSize'], 'Blocks: font-size in random place' ); 4913 $this->assertEquals( $primary_color, $styles['blocks']['core/comment-content']['color']['text'], 'Blocks: text color with fallback' ); 4914 $this->assertEquals( $primary_color, $styles['blocks']['core/comment-content']['color']['background'], 'Blocks: background color with var as fallback' ); 4915 $this->assertEquals( $primary_color, $styles['blocks']['core/navigation']['elements']['link']['color']['background'], 'Block element: background color' ); 4916 $this->assertEquals( $secondary_color, $styles['blocks']['core/navigation']['elements']['link']['color']['text'], 'Block element: text color' ); 4917 $this->assertEquals( $large_font, $styles['blocks']['core/navigation']['elements']['link']['typography']['fontSize'], 'Block element: font-size' ); 4918 4919 $this->assertEquals( 4920 "var(--undefined--color--primary, $small_font)", 4921 $styles['blocks']['core/comments']['color']['text'], 4922 'Blocks: text color with undefined var and fallback' 4923 ); 4924 $this->assertEquals( 4925 $primary_color, 4926 $styles['blocks']['core/comments']['color']['background'], 4927 'Blocks: background color with variable and undefined fallback' 4928 ); 4929 4930 $this->assertEquals( $small_font, $styles['blocks']['core/quote']['variations']['plain']['typography']['fontSize'], 'Block variations: font-size' ); 4931 $this->assertEquals( $secondary_color, $styles['blocks']['core/quote']['variations']['plain']['color']['background'], 'Block variations: color' ); 4932 } 4933 4780 4934 }
Note: See TracChangeset
for help on using the changeset viewer.