为什么JEST测试中的getComputedStyle()在Chrome / Firefox DevTools中将不同的结果返回给计算样式


16

我已经MyStyledButton基于material-ui 编写了一个自定义按钮()Button

import React from "react";
import { Button } from "@material-ui/core";
import { makeStyles } from "@material-ui/styles";

const useStyles = makeStyles({
  root: {
    minWidth: 100
  }
});

function MyStyledButton(props) {
  const buttonStyle = useStyles(props);
  const { children, width, ...others } = props;

  return (

      <Button classes={{ root: buttonStyle.root }} {...others}>
        {children}
      </Button>
     );
}

export default MyStyledButton;

它使用主题进行样式设置,并且backgroundColor将设置为黄色阴影(具体而言#fbb900

import { createMuiTheme } from "@material-ui/core/styles";

export const myYellow = "#FBB900";

export const theme = createMuiTheme({
  overrides: {
    MuiButton: {
      containedPrimary: {
        color: "black",
        backgroundColor: myYellow
      }
    }
  }
});

该组件在我的main中实例化,index.js并包装在中theme

  <MuiThemeProvider theme={theme}>
     <MyStyledButton variant="contained" color="primary">
       Primary Click Me
     </MyStyledButton>
  </MuiThemeProvider>

如果我检查Chrome DevTools中的按钮,则按background-color预期进行“计算”。Firefox DevTools中也是如此。

Chrome的屏幕截图

然而,当我写个笑话测试,以检查background-color和使用我查询DOM节点样式的按钮,getComputedStyles()我得到的transparent背部和测试失败。

const wrapper = mount(
    <MyStyledButton variant="contained" color="primary">
      Primary
    </MyStyledButton>
  );
  const foundButton = wrapper.find("button");
  expect(foundButton).toHaveLength(1);
  //I want to check the background colour of the button here
  //I've tried getComputedStyle() but it returns 'transparent' instead of #FBB900
  expect(
    window
      .getComputedStyle(foundButton.getDOMNode())
      .getPropertyValue("background-color")
  ).toEqual(myYellow);

我提供了一个CodeSandbox,其中包含确切的问题,最少的代码可重现和JEST测试失败。

编辑无头雪域


.MuiButtonBase-root-33 background-color是透明的,而.MuiButton-containedPrimary-13不透明-因此问题是,CSS中的类同等重要,因此仅加载顺序可以区分它们->测试样式中的加载顺序错误。
Zydnar

1
@Andreas-根据要求更新
Simon Long

@Zyndar-是的,我知道。有什么办法可以使该测试通过?
西蒙·朗

会不会在theme在测试中使用的需要?如在中,将包裹<MyStyledButton><MuiThemeProvider theme={theme}>?中。还是使用一些包装函数将主题添加到所有组件?
Brett DeWoody

不,那没有任何区别。
西蒙·朗

Answers:


1

我已经接近了,但还没有找到解决方案。

主要问题是MUIButton向元素注入标签以增强样式。这在您的单元测试中没有发生。通过使用材料测试使用的createMount,我能够使它正常工作。

此修复后,样式可以正确显示。但是,计算出的样式仍然不起作用。看来其他人在正确处理此酶方面遇到了问题-因此我不确定是否可能。

要到达我所在的位置,请使用您的测试代码段,将其复制到顶部,然后将测试代码更改为:

const myMount = createMount({ strict: true });
  const wrapper = myMount(
    <MuiThemeProvider theme={theme}>
      <MyStyledButton variant="contained" color="primary">
        Primary
      </MyStyledButton>
    </MuiThemeProvider>
  );
class Mode extends React.Component {
  static propTypes = {
    /**
     * this is essentially children. However we can't use children because then
     * using `wrapper.setProps({ children })` would work differently if this component
     * would be the root.
     */
    __element: PropTypes.element.isRequired,
    __strict: PropTypes.bool.isRequired,
  };

  render() {
    // Excess props will come from e.g. enzyme setProps
    const { __element, __strict, ...other } = this.props;
    const Component = __strict ? React.StrictMode : React.Fragment;

    return <Component>{React.cloneElement(__element, other)}</Component>;
  }
}

// Generate an enhanced mount function.
function createMount(options = {}) {

  const attachTo = document.createElement('div');
  attachTo.className = 'app';
  attachTo.setAttribute('id', 'app');
  document.body.insertBefore(attachTo, document.body.firstChild);

  const mountWithContext = function mountWithContext(node, localOptions = {}) {
    const strict = true;
    const disableUnnmount = false;
    const localEnzymeOptions = {};
    const globalEnzymeOptions = {};

    if (!disableUnnmount) {
      ReactDOM.unmountComponentAtNode(attachTo);
    }

    // some tests require that no other components are in the tree
    // e.g. when doing .instance(), .state() etc.
    return mount(strict == null ? node : <Mode __element={node} __strict={Boolean(strict)} />, {
      attachTo,
      ...globalEnzymeOptions,
      ...localEnzymeOptions,
    });
  };

  mountWithContext.attachTo = attachTo;
  mountWithContext.cleanUp = () => {
    ReactDOM.unmountComponentAtNode(attachTo);
    attachTo.parentElement.removeChild(attachTo);
  };

  return mountWithContext;
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.