Interface CFileWaitVerifier

    • Method Detail

      • verifyEqualsStringContent

        default void verifyEqualsStringContent​(CVerificationQueue verificationQueue,
                                               java.io.File expectedFile,
                                               int waitInSeconds)
        Verify that actual and expected file have the exact same content.
        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expectedFile - file to compare
        waitInSeconds - maximum wait time
      • verifyEqualsStringContent

        default void verifyEqualsStringContent​(CVerificationQueue verificationQueue,
                                               java.io.File expectedFile,
                                               int waitInSeconds,
                                               java.lang.String message,
                                               java.lang.Object... params)
        Verify that actual and expected file have the exact same content.
        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expectedFile - file to compare
        waitInSeconds - maximum wait time
        message - information about the propose of this verification
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • verifyEqualsStringContent

        default void verifyEqualsStringContent​(CVerificationQueue verificationQueue,
                                               java.io.File expectedFile,
                                               int waitInSeconds,
                                               int intervalInMilliSeconds)
        Verify that actual and expected file have the exact same content.
        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expectedFile - file to compare
        waitInSeconds - maximum wait time
        intervalInMilliSeconds - interval between retries in milliseconds
      • verifyEqualsStringContent

        default void verifyEqualsStringContent​(CVerificationQueue verificationQueue,
                                               java.io.File expectedFile,
                                               int waitInSeconds,
                                               int intervalInMilliSeconds,
                                               java.lang.String message,
                                               java.lang.Object... params)
        Verify that actual and expected file have the exact same content.
        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expectedFile - file to compare
        waitInSeconds - maximum wait time
        intervalInMilliSeconds - interval between retries in milliseconds
        message - information about the propose of this verification
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • verifyExists

        default void verifyExists​(CVerificationQueue verificationQueue,
                                  int waitInSeconds)
        Verify that the file exists
        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        waitInSeconds - maximum wait time
      • verifyExists

        default void verifyExists​(CVerificationQueue verificationQueue,
                                  int waitInSeconds,
                                  java.lang.String message,
                                  java.lang.Object... params)
        Verify that the file exists
        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        waitInSeconds - maximum wait time
        message - information about the propose of this verification
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • verifyExists

        default void verifyExists​(CVerificationQueue verificationQueue,
                                  int waitInSeconds,
                                  int intervalInMilliSeconds)
        Verify that the file exists
        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        waitInSeconds - maximum wait time
        intervalInMilliSeconds - interval between retries in milliseconds
      • verifyExists

        default void verifyExists​(CVerificationQueue verificationQueue,
                                  int waitInSeconds,
                                  int intervalInMilliSeconds,
                                  java.lang.String message,
                                  java.lang.Object... params)
        Verify that the file exists
        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        waitInSeconds - maximum wait time
        intervalInMilliSeconds - interval between retries in milliseconds
        message - information about the propose of this verification
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • verifyIsNotExists

        default void verifyIsNotExists​(CVerificationQueue verificationQueue,
                                       int waitInSeconds)
        Verify that the file does not exists
        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        waitInSeconds - maximum wait time
      • verifyIsNotExists

        default void verifyIsNotExists​(CVerificationQueue verificationQueue,
                                       int waitInSeconds,
                                       java.lang.String message,
                                       java.lang.Object... params)
        Verify that the file does not exists
        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        waitInSeconds - maximum wait time
        message - information about the propose of this verification
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • verifyIsNotExists

        default void verifyIsNotExists​(CVerificationQueue verificationQueue,
                                       int waitInSeconds,
                                       int intervalInMilliSeconds)
        Verify that the file does not exists
        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        waitInSeconds - maximum wait time
        intervalInMilliSeconds - interval between retries in milliseconds
      • verifyIsNotExists

        default void verifyIsNotExists​(CVerificationQueue verificationQueue,
                                       int waitInSeconds,
                                       int intervalInMilliSeconds,
                                       java.lang.String message,
                                       java.lang.Object... params)
        Verify that the file does not exists
        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        waitInSeconds - maximum wait time
        intervalInMilliSeconds - interval between retries in milliseconds
        message - information about the propose of this verification
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • verifyNotEqualsStringContent

        default void verifyNotEqualsStringContent​(CVerificationQueue verificationQueue,
                                                  CFile expectedFile,
                                                  int waitInSeconds)
        Verify that actual and expected file does not have the exact same content.
        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expectedFile - file to compare
        waitInSeconds - maximum wait time
      • verifyNotEqualsStringContent

        default void verifyNotEqualsStringContent​(CVerificationQueue verificationQueue,
                                                  CFile expectedFile,
                                                  int waitInSeconds,
                                                  java.lang.String message,
                                                  java.lang.Object... params)
        Verify that actual and expected file does not have the exact same content.
        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expectedFile - file to compare
        waitInSeconds - maximum wait time
        message - information about the propose of this verification
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • verifyNotEqualsStringContent

        default void verifyNotEqualsStringContent​(CVerificationQueue verificationQueue,
                                                  CFile expectedFile,
                                                  int waitInSeconds,
                                                  int intervalInMilliSeconds)
        Verify that actual and expected file does not have the exact same content.
        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expectedFile - file to compare
        waitInSeconds - maximum wait time
        intervalInMilliSeconds - interval between retries in milliseconds
      • verifyNotEqualsStringContent

        default void verifyNotEqualsStringContent​(CVerificationQueue verificationQueue,
                                                  CFile expectedFile,
                                                  int waitInSeconds,
                                                  int intervalInMilliSeconds,
                                                  java.lang.String message,
                                                  java.lang.Object... params)
        Verify that actual and expected file does not have the exact same content.
        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expectedFile - file to compare
        waitInSeconds - maximum wait time
        intervalInMilliSeconds - interval between retries in milliseconds
        message - information about the propose of this verification
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)