kerry
4 years ago
8 changed files with 150 additions and 2 deletions
@ -0,0 +1,57 @@ |
|||||||
|
package com.fr.design.i18n; |
||||||
|
|
||||||
|
import com.fr.design.dialog.BasicDialog; |
||||||
|
import com.fr.general.GeneralContext; |
||||||
|
import com.fr.locale.LocaleManager; |
||||||
|
import com.fr.locale.impl.FineLocaleManager; |
||||||
|
|
||||||
|
import java.awt.Dimension; |
||||||
|
import java.util.Map; |
||||||
|
|
||||||
|
/** |
||||||
|
* Created by kerry on 2/23/21 |
||||||
|
*/ |
||||||
|
public class DesignSizeI18nManager { |
||||||
|
private static final String I18N_DIMENSION_PATH = "com/fr/design/i18n/dimension"; |
||||||
|
private static final String DIMENSION_REGEX = "^[1-9]\\d*\\*[1-9]\\d*$"; |
||||||
|
private static final String SEPARATOR_REGEX = "\\*"; |
||||||
|
private static final int WIDTH_INDEX = 0; |
||||||
|
private static final int HEIGHT_INDEX = 1; |
||||||
|
private static final int SPLIT_LENGTH = 2; |
||||||
|
|
||||||
|
private static DesignSizeI18nManager instance = new DesignSizeI18nManager(); |
||||||
|
|
||||||
|
public static DesignSizeI18nManager getInstance() { |
||||||
|
return instance; |
||||||
|
} |
||||||
|
|
||||||
|
private LocaleManager localeManager = FineLocaleManager.create(); |
||||||
|
|
||||||
|
private DesignSizeI18nManager() { |
||||||
|
localeManager.addResource(I18N_DIMENSION_PATH); |
||||||
|
} |
||||||
|
|
||||||
|
public Dimension i18nDimension(String key) { |
||||||
|
if (!containKey(key)) { |
||||||
|
return BasicDialog.DEFAULT; |
||||||
|
} |
||||||
|
String dimension = localeManager.getLocalBundle(GeneralContext.getLocale()).getText(localeManager, key); |
||||||
|
return parseDimensionFromText(dimension); |
||||||
|
} |
||||||
|
|
||||||
|
private boolean containKey(String key) { |
||||||
|
Map<String, String> localeKV = localeManager.getLocalBundle(GeneralContext.getLocale()).getKV(localeManager); |
||||||
|
return localeKV != null && localeKV.containsKey(key); |
||||||
|
} |
||||||
|
|
||||||
|
private Dimension parseDimensionFromText(String dimensionText) { |
||||||
|
if (!dimensionText.matches(DIMENSION_REGEX)) { |
||||||
|
return BasicDialog.DEFAULT; |
||||||
|
} |
||||||
|
String[] arr = dimensionText.split(SEPARATOR_REGEX); |
||||||
|
if (arr.length < SPLIT_LENGTH) { |
||||||
|
return BasicDialog.DEFAULT; |
||||||
|
} |
||||||
|
return new Dimension(Integer.parseInt(arr[WIDTH_INDEX]), Integer.parseInt(arr[HEIGHT_INDEX])); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1 @@ |
|||||||
|
com.fr.design.report.ReportColumnsPane=800*600 |
@ -0,0 +1 @@ |
|||||||
|
# \u9ED8\u8BA4\u4E3A\u7C7B\u7684\u5168\u9650\u5B9A\u540D\uFF08\u53EF\u81EA\u5B9A\u4E49key\uFF09= width * height |
@ -0,0 +1,80 @@ |
|||||||
|
package com.fr.design.i18n; |
||||||
|
|
||||||
|
import com.fr.general.GeneralContext; |
||||||
|
import com.fr.invoke.Reflect; |
||||||
|
import org.easymock.EasyMock; |
||||||
|
import org.junit.Assert; |
||||||
|
import org.junit.Test; |
||||||
|
import org.junit.runner.RunWith; |
||||||
|
import org.powermock.api.easymock.PowerMock; |
||||||
|
import org.powermock.core.classloader.annotations.PrepareForTest; |
||||||
|
import org.powermock.modules.junit4.PowerMockRunner; |
||||||
|
|
||||||
|
import java.awt.Dimension; |
||||||
|
import java.util.Locale; |
||||||
|
|
||||||
|
/** |
||||||
|
* Created by kerry on 2/24/21 |
||||||
|
*/ |
||||||
|
@RunWith(PowerMockRunner.class) |
||||||
|
@PrepareForTest(GeneralContext.class) |
||||||
|
public class DesignSizeI18nManagerTest { |
||||||
|
@Test |
||||||
|
public void testI18nDimension() { |
||||||
|
Dimension dimension = DesignSizeI18nManager.getInstance().i18nDimension("com.fr.design.report.ReportColumnsPane"); |
||||||
|
validDimension(dimension, 660, 600); |
||||||
|
|
||||||
|
PowerMock.mockStatic(GeneralContext.class); |
||||||
|
EasyMock.expect(GeneralContext.getLocale()).andReturn(Locale.ENGLISH).times(3); |
||||||
|
PowerMock.replayAll(); |
||||||
|
|
||||||
|
dimension = DesignSizeI18nManager.getInstance().i18nDimension("com.fr.design.report.ReportColumnsPane"); |
||||||
|
validDimension(dimension, 800, 600); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void testContainKey() { |
||||||
|
PowerMock.mockStatic(GeneralContext.class); |
||||||
|
EasyMock.expect(GeneralContext.getLocale()).andReturn(Locale.ENGLISH).times(3); |
||||||
|
PowerMock.replayAll(); |
||||||
|
|
||||||
|
boolean result = Reflect.on(DesignSizeI18nManager.getInstance()).call("containKey", "testKey").get(); |
||||||
|
Assert.assertFalse(result); |
||||||
|
|
||||||
|
result = Reflect.on(DesignSizeI18nManager.getInstance()).call("containKey", "com.fr.design.report.ReportColumnsPane").get(); |
||||||
|
Assert.assertTrue(result); |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void testParseDimensionFromText() { |
||||||
|
String dimensionText = "800*600"; |
||||||
|
Dimension result = Reflect.on(DesignSizeI18nManager.getInstance()).call("parseDimensionFromText", dimensionText).get(); |
||||||
|
validDimension(result, 800, 600); |
||||||
|
|
||||||
|
dimensionText = "800* 600"; |
||||||
|
result = Reflect.on(DesignSizeI18nManager.getInstance()).call("parseDimensionFromText", dimensionText).get(); |
||||||
|
validDimension(result, 660, 600); |
||||||
|
|
||||||
|
dimensionText = " 800*600"; |
||||||
|
result = Reflect.on(DesignSizeI18nManager.getInstance()).call("parseDimensionFromText", dimensionText).get(); |
||||||
|
validDimension(result, 660, 600); |
||||||
|
|
||||||
|
dimensionText = "800*600s"; |
||||||
|
result = Reflect.on(DesignSizeI18nManager.getInstance()).call("parseDimensionFromText", dimensionText).get(); |
||||||
|
validDimension(result, 660, 600); |
||||||
|
|
||||||
|
dimensionText = "800s*600"; |
||||||
|
result = Reflect.on(DesignSizeI18nManager.getInstance()).call("parseDimensionFromText", dimensionText).get(); |
||||||
|
validDimension(result, 660, 600); |
||||||
|
|
||||||
|
dimensionText = "800-600"; |
||||||
|
result = Reflect.on(DesignSizeI18nManager.getInstance()).call("parseDimensionFromText", dimensionText).get(); |
||||||
|
validDimension(result, 660, 600); |
||||||
|
} |
||||||
|
|
||||||
|
private void validDimension(Dimension dimension, int width, int height) { |
||||||
|
Assert.assertEquals(width, dimension.width); |
||||||
|
Assert.assertEquals(height, dimension.height); |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue