1

//如何在JUnit中为这个类编写单元测试......

package com.emr.common.helper;

import java.util.Random;

public class RandomTextGenerator {

    public static String getAutogenerateText()
    {
        /*Auto genarate password    */

        String password = "";
        /* Create Auto Password */
        int count = 36;
        // int range = Integer.MAX_VALUE;
        int sum = 0;

        Random rand = new Random();
        for (int j = 0; j < 45; j++) {
            for (int i = 0; i < count; i++) {
                sum = rand.nextInt(count);

            }
            char[] pass = { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J',
                    'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V',
                    'W', 'X', 'Y', 'Z', '0', '1', '2', '3', '4', '5', '6', '7',
                    '8', '9' };
            password = password + pass[sum];
        }

        return password;
    }

}
4

2 回答 2

3

如果您说,您将无法有效地测试此类new Random()- 通过这样做,您已经硬编码了对您无法控制的有效外部依赖项(随机数源)的引用。

相反,您应该通过Random方法参数将对象传递给类,并在您的测试中提供一个模拟实现,您可以控制返回的值。

于 2013-04-11T07:46:32.563 回答
1

尝试将其与 RegEx 匹配,该 RegEx 检查返回的字符串是否匹配 45 个字母和数字混合的字符。

这个正则表达式应该工作:

^[A-Z0-9]{45}$
于 2013-04-11T07:41:27.150 回答