How to use Cache class of org.testingisdocumenting.webtau.cache package

Best Webtau code snippet using org.testingisdocumenting.webtau.cache.Cache

Source:Cache.java Github

copy

Full Screen

...27import java.util.function.Supplier;28import static org.testingisdocumenting.webtau.reporter.IntegrationTestsMessageBuilder.*;29import static org.testingisdocumenting.webtau.reporter.IntegrationTestsMessageBuilder.stringValue;30import static org.testingisdocumenting.webtau.reporter.TokenizedMessage.tokenizedMessage;31public class Cache {32 public static final Cache cache = new Cache();33 private final FileBasedCache fileBasedCache;34 private Cache() {35 fileBasedCache = new FileBasedCache(() -> WebTauConfig.getCfg().getCachePath());36 }37 public <E> CachedValue<E> value(String id) {38 return new CachedValue<>(cache, id);39 }40 public <E> E get(String key) {41 return getAsStep(key, Function.identity());42 }43 public <E> E get(String key, long expirationMs, Supplier<E> newValueSupplier) {44 WebTauStep step = WebTauStep.createStep(45 tokenizedMessage(action("getting cached or generating new value"), FROM, id(key)),46 (r) -> {47 @SuppressWarnings("unchecked")48 CachedValueAndMethod<E> cachedValueAndMethod = (CachedValueAndMethod<E>) r;49 MessageToken preposition = cachedValueAndMethod.method == ObtainMethod.CACHED ? FROM : AS;50 return tokenizedMessage(action(cachedValueAndMethod.method.message), preposition, id(key), COLON, stringValue(cachedValueAndMethod.value));51 },52 () -> getWithExpirationAndSupplierStep(key, expirationMs, newValueSupplier, Function.identity()));53 step.setInput(WebTauStepInputKeyValue.stepInput(Collections.singletonMap("expirationMs", expirationMs)));54 CachedValueAndMethod<E> executionResult = step.execute(StepReportOptions.REPORT_ALL);55 return executionResult.value;56 }57 public boolean exists(String key) {58 MessageToken valuePresenceMessage = action("cache value presence");59 WebTauStep step = WebTauStep.createStep(60 tokenizedMessage(action("check"), id(key), valuePresenceMessage),61 (result) -> tokenizedMessage(action("checked"), id(key), valuePresenceMessage, COLON,62 classifier((boolean)result ? "exists" : "absent")),63 () -> fileBasedCache.exists(key));64 return step.execute(StepReportOptions.SKIP_START);65 }66 public void remove(String key) {67 MessageToken valueMessage = action("cached value");68 WebTauStep step = WebTauStep.createStep(69 tokenizedMessage(action("remove"), id(key), valueMessage),70 () -> tokenizedMessage(action("removed"), id(key), valueMessage),71 () -> fileBasedCache.remove(key));72 step.execute(StepReportOptions.SKIP_START);73 }74 public boolean isExpired(String key, long expirationMs) {75 MessageToken valueExpirationMessage = action("cache value expiration");76 WebTauStep step = WebTauStep.createStep(77 tokenizedMessage(action("check"), id(key), valueExpirationMessage),78 (result) -> tokenizedMessage(action("checked"), id(key), valueExpirationMessage, COLON,79 classifier((boolean)result ? "expired" : "valid")),80 () -> fileBasedCache.isExpired(key, expirationMs));81 step.setInput(WebTauStepInputKeyValue.stepInput("expirationMs", expirationMs));82 return step.execute(StepReportOptions.SKIP_START);83 }84 public Path getAsPath(String key) {85 return getAsStep(key, (v) -> Paths.get(v.toString()));86 }87 public void put(String key, Object value) {88 WebTauStep step = WebTauStep.createStep(89 tokenizedMessage(action("caching value"), AS, id(key), COLON, stringValue(value)),90 () -> tokenizedMessage(action("cached value"), AS, id(key), COLON, stringValue(value)),91 () -> fileBasedCache.put(key, CacheValueConverter.convertToCached(value)));92 step.execute(StepReportOptions.SKIP_START);93 }94 private <E, R> R getAsStep(String key, Function<E, R> converter) {95 WebTauStep step = WebTauStep.createStep(96 tokenizedMessage(action("getting cached value"), FROM, id(key)),97 (r) -> tokenizedMessage(action("got cached value"), FROM, id(key), COLON, stringValue(r)),98 () -> {99 E value = fileBasedCache.get(key);100 if (value == null) {101 throw new AssertionError("can't find cached value by key: " + key);102 }103 return converter.apply(value);104 });105 return step.execute(StepReportOptions.SKIP_START);106 }107 private <E, R> CachedValueAndMethod<R> getWithExpirationAndSupplierStep(String key, long expirationMs, Supplier<E> newValueSupplier, Function<E, R> converter) {108 if (!exists(key)) {109 E newValue = newValueSupplier.get();110 put(key, newValue);111 return new CachedValueAndMethod<>(ObtainMethod.CREATE_NEW, converter.apply(newValue));112 } else if (isExpired(key, expirationMs)) {113 E newValue = newValueSupplier.get();114 put(key, newValue);115 return new CachedValueAndMethod<>(ObtainMethod.RE_CREATE, converter.apply(newValue));116 } else {117 E existingValue = get(key);118 return new CachedValueAndMethod<>(ObtainMethod.CACHED, converter.apply(existingValue));119 }120 }121 enum ObtainMethod {122 CREATE_NEW("created new value and cached"),123 RE_CREATE("re-created value and cached"),124 CACHED("got cached value");125 private final String message;126 ObtainMethod(String message) {127 this.message = message;128 }129 }130 static class CachedValueAndMethod<R> {131 private final ObtainMethod method;132 private final R value;133 public CachedValueAndMethod(ObtainMethod method, R value) {134 this.method = method;135 this.value = value;136 }137 }138}...

Full Screen

Full Screen

Source:Browser.java Github

copy

Full Screen

...20import org.testingisdocumenting.webtau.browser.driver.WebDriverCreator;21import org.testingisdocumenting.webtau.browser.navigation.BrowserPageNavigation;22import org.testingisdocumenting.webtau.browser.page.*;23import org.testingisdocumenting.webtau.browser.page.path.PageElementPath;24import org.testingisdocumenting.webtau.cache.Cache;25import org.testingisdocumenting.webtau.utils.UrlUtils;26import org.openqa.selenium.OutputType;27import static org.testingisdocumenting.webtau.cfg.WebTauConfig.getCfg;28import static org.testingisdocumenting.webtau.reporter.IntegrationTestsMessageBuilder.*;29import static org.testingisdocumenting.webtau.reporter.WebTauStep.createAndExecuteStep;30import static org.testingisdocumenting.webtau.reporter.TokenizedMessage.tokenizedMessage;31public class Browser {32 private static final String DEFAULT_URL_CACHE_KEY = "current";33 private final AdditionalBrowserInteractions additionalBrowserInteractions;34 public static final Browser browser = new Browser();35 public final CurrentWebDriver driver = CurrentWebDriver.INSTANCE;36 public final BrowserCookies cookies = new BrowserCookies(driver);37 public final BrowserLocalStorage localStorage = new BrowserLocalStorage(driver);38 public final BrowserNavigation navigation = new BrowserNavigation(driver);39 public final BrowserDocumentation doc = new BrowserDocumentation(driver);40 public final PageUrl url = new PageUrl(driver::getCurrentUrl);41 public final BrowserKeys keys = new BrowserKeys();42 public final PageElementValue<String> title = new PageElementValue<>(BrowserContext.INSTANCE,43 "title", this::extractPageTitle);44 private Browser() {45 additionalBrowserInteractions = new BrowserInjectedJavaScript(driver);46 }47 public void open(String url) {48 String fullUrl = createFullUrl(url);49 String currentUrl = driver.getCurrentUrl();50 boolean sameUrl = fullUrl.equals(currentUrl);51 createAndExecuteStep(tokenizedMessage(action("opening"), urlValue(fullUrl)),52 () -> tokenizedMessage(action(sameUrl ? "staying at" : "opened"), urlValue(fullUrl)),53 () -> {54 if (!sameUrl) {55 BrowserPageNavigation.open(driver, url, fullUrl);56 }57 });58 }59 public void reopen(String url) {60 String fullUrl = createFullUrl(url);61 createAndExecuteStep(tokenizedMessage(action("re-opening"), urlValue(fullUrl)),62 () -> tokenizedMessage(action("opened"), urlValue(fullUrl)),63 () -> BrowserPageNavigation.open(driver, url, fullUrl));64 }65 public void refresh() {66 createAndExecuteStep(tokenizedMessage(action("refreshing current page")),67 () -> tokenizedMessage(action("refreshed current page")),68 () -> BrowserPageNavigation.refresh(driver));69 }70 public void close() {71 createAndExecuteStep(tokenizedMessage(action("closing browser")),72 () -> tokenizedMessage(action("browser is closed")),73 driver::quit);74 }75 public void back() {76 createAndExecuteStep(77 tokenizedMessage(action("browser going"), classifier("back")),78 () -> tokenizedMessage(action("browser went"), classifier("back")),79 () -> driver.navigate().back());80 }81 public void forward() {82 createAndExecuteStep(83 tokenizedMessage(action("browser going"), classifier("forward")),84 () -> tokenizedMessage(action("browser went"), classifier("forward")),85 () -> driver.navigate().forward());86 }87 public void restart() {88 String currentUrl = driver.getCurrentUrl();89 createAndExecuteStep(tokenizedMessage(action("restarting browser")),90 () -> tokenizedMessage(action("browser is restarted")),91 () -> {92 close();93 browser.open(currentUrl);94 });95 }96 public void saveCurrentUrl() {97 saveCurrentUrl(DEFAULT_URL_CACHE_KEY);98 }99 public void saveCurrentUrl(String key) {100 createAndExecuteStep(tokenizedMessage(action("saving current url as"), stringValue(key)),101 () -> tokenizedMessage(action("saved current url as"), stringValue(key)),102 () -> Cache.cache.put(makeCacheKey(key), driver.getCurrentUrl()));103 }104 public void openSavedUrl() {105 openSavedUrl(DEFAULT_URL_CACHE_KEY);106 }107 public void openSavedUrl(String key) {108 createAndExecuteStep(tokenizedMessage(action("opening url saved as"), stringValue(key)),109 () -> tokenizedMessage(action("opened url saved as"), stringValue(key)),110 () -> {111 Object url = Cache.cache.get(makeCacheKey(key));112 if (url == null) {113 throw new IllegalStateException("no previously saved url found");114 }115 reopen(url.toString());116 });117 }118 public PageElement $(String css) {119 return new GenericPageElement(driver, additionalBrowserInteractions, PageElementPath.css(css), false);120 }121 public boolean hasActiveBrowsers() {122 return WebDriverCreator.hasActiveBrowsers();123 }124 public String takeScreenshotAsBase64() {125 return driver.getScreenshotAs(OutputType.BASE64);126 }127 public String extractPageTitle() {128 return driver.getTitle();129 }130 private String createFullUrl(String url) {131 if (UrlUtils.isFull(url)) {132 return url;133 }134 if (!BrowserConfig.getBrowserUrl().isEmpty()) {135 return UrlUtils.concat(BrowserConfig.getBrowserUrl(), url);136 }137 return UrlUtils.concat(getCfg().getBaseUrl(), url);138 }139 private static String makeCacheKey(String givenKey) {140 return "url_" + givenKey;141 }142}...

Full Screen

Full Screen

Source:WebTauDsl.java Github

copy

Full Screen

...20import org.testingisdocumenting.webtau.browser.expectation.EnabledValueMatcher;21import org.testingisdocumenting.webtau.browser.expectation.HiddenValueMatcher;22import org.testingisdocumenting.webtau.browser.expectation.VisibleValueMatcher;23import org.testingisdocumenting.webtau.browser.page.PageElement;24import org.testingisdocumenting.webtau.cache.Cache;25import org.testingisdocumenting.webtau.cfg.WebTauConfig;26import org.testingisdocumenting.webtau.cli.Cli;27import org.testingisdocumenting.webtau.data.Data;28import org.testingisdocumenting.webtau.db.DatabaseFacade;29import org.testingisdocumenting.webtau.expectation.ValueMatcher;30import org.testingisdocumenting.webtau.fs.FileSystem;31import org.testingisdocumenting.webtau.graphql.GraphQL;32import org.testingisdocumenting.webtau.http.Http;33import org.testingisdocumenting.webtau.http.datanode.DataNode;34import org.testingisdocumenting.webtau.pdf.Pdf;35import org.testingisdocumenting.webtau.schema.expectation.SchemaMatcher;36import org.testingisdocumenting.webtau.server.WebTauServerFacade;37/*38Convenient class for static * import39 */40public class WebTauDsl extends WebTauCore {41 public static final FileSystem fs = FileSystem.fs;42 public static final Data data = Data.data;43 public static final Cache cache = Cache.cache;44 public static final Http http = Http.http;45 public static final Browser browser = Browser.browser;46 public static final Cli cli = Cli.cli;47 public static final DatabaseFacade db = DatabaseFacade.db;48 public static final GraphQL graphql = GraphQL.graphql;49 public static final WebTauServerFacade server = WebTauServerFacade.server;50 /**51 * visible matcher to check if UI element is visible52 * @see #hidden53 */54 public static final ValueMatcher visible = new VisibleValueMatcher();55 /**56 * hidden matcher to check if UI element is hidden57 * @see #visible...

Full Screen

Full Screen

Cache

Using AI Code Generation

copy

Full Screen

1import org.testingisdocumenting.webtau.cache.Cache;2public class 2 {3 public static void main(String[] args) {4 Cache.put("name", "John");5 System.out.println(Cache.get("name"));6 }7}8import org.testingisdocumenting.webtau.cache.Cache;9public class 3 {10 public static void main(String[] args) {11 Cache.put("name", "John");12 System.out.println(Cache.get("name"));13 }14}15import org.testingisdocumenting.webtau.cache.Cache;16public class 4 {17 public static void main(String[] args) {18 Cache.put("name", "John");19 System.out.println(Cache.get("name"));20 }21}22import org.testingisdocumenting.webtau.cache.Cache;23public class 5 {24 public static void main(String[] args) {25 Cache.put("name", "John");26 System.out.println(Cache.get("name"));27 }28}29import org.testingisdocumenting.webtau.cache.Cache;30public class 6 {31 public static void main(String[] args) {32 Cache.put("name", "John");33 System.out.println(Cache.get("name"));34 }35}36import org.testingisdocumenting.webtau.cache.Cache;37public class 7 {38 public static void main(String[] args) {39 Cache.put("name", "John");40 System.out.println(Cache.get("name"));41 }42}43import org.testingisdocumenting.webtau.cache.Cache;44public class 8 {

Full Screen

Full Screen

Cache

Using AI Code Generation

copy

Full Screen

1public class MyCacheTest {2 public void cacheTest() {3 Cache cache = new Cache(5, TimeUnit.SECONDS);4 String value1 = cache.get("myKey", () -> "myValue");5 String value2 = cache.get("myKey", () -> "myValue2");6 assertThat(value1).isEqualTo(value2);7 }8}9public class MyCacheTest {10 public void cacheTest() {11 Cache cache = new Cache(5, TimeUnit.SECONDS);12 String value1 = cache.get("myKey", () -> "myValue");13 sleep(6, TimeUnit.SECONDS);14 String value2 = cache.get("myKey", () -> "myValue2");15 assertThat(value1).isNotEqualTo(value2);16 }17}18public class MyCacheTest {19 public void cacheTest() {20 Cache cache = new Cache(5, TimeUnit.SECONDS);21 String value1 = cache.get("myKey", () -> "myValue");22 sleep(4, TimeUnit.SECONDS);23 String value2 = cache.get("myKey", () -> "myValue2");24 assertThat(value1).isEqualTo(value2);25 }26}27public class MyCacheTest {28 public void cacheTest() {29 Cache cache = new Cache(5, TimeUnit.SECONDS);30 String value1 = cache.get("myKey", () -> "myValue");31 sleep(5, TimeUnit.SECONDS);32 String value2 = cache.get("myKey", () -> "myValue2");33 assertThat(value1).isEqualTo(value2);34 }35}36public class MyCacheTest {

Full Screen

Full Screen

Cache

Using AI Code Generation

copy

Full Screen

1import org.testingisdocumenting.webtau.cache.Cache;2import org.testingisdocumenting.webtau.data.table.DataTable;3import org.testingisdocumenting.webtau.data.table.TableData;4import org.testingisdocumenting.webtau.http.Http;5import org.testingisdocumenting.webtau.reporter.WebTauStep;6import java.util.List;7class 2 {8 void shouldUseCache() {9 WebTauStep.createAndExecuteStep("fetch data", () -> {10 if (Cache.has("data")) {11 return Cache.get("data");12 }13 TableData tableData = Http.get("/data").jsonBody().asTableData();14 Cache.put("data", tableData);15 return tableData;16 }).should(equal(TableData.create(17 row("a", "b", "c"),18 row("1", "2", "3"),19 row("4", "5", "6"))));20 }21 private static List<Object> row(Object... values) {22 return Arrays.asList(values);23 }24}25import org.testingisdocumenting.webtau.cache.Cache;26import org.testingisdocumenting.webtau.data.table.DataTable;27import org.testingisdocumenting.webtau.data.table.TableData;28import org.testingisdocumenting.webtau.http.Http;29import org.testingisdocumenting.webtau.reporter.WebTauStep;30import java.util.List;31class 3 {32 void shouldUseCache() {33 WebTauStep.createAndExecuteStep("fetch data", () -> {34 if (Cache.has("data")) {35 return Cache.get("data");36 }37 TableData tableData = Http.get("/data").jsonBody().asTableData();38 Cache.put("data", tableData);39 return tableData;40 }).should(equal(TableData.create(41 row("a", "b", "c"),42 row("1", "2", "3"),43 row("4", "5", "6"))));44 }

Full Screen

Full Screen

Cache

Using AI Code Generation

copy

Full Screen

1import org.testingisdocumenting.webtau.cache.Cache;2import java.util.function.Function;3public class 2 {4 private static final Cache<String, String> cache = new Cache<>(10_000);5 public static String cachedFunction(String arg) {6 return cache.get(arg, (Function<String, String>) s -> "result for " + s);7 }8}9import org.testingisdocumenting.webtau.cache.Cache;10import java.util.function.Function;11public class 3 {12 private static final Cache<String, String> cache = new Cache<>(10_000);13 public static String cachedFunction(String arg) {14 return cache.get(arg, s -> "result for " + s);15 }16}17import org.testingisdocumenting.webtau.cache.Cache;18import java.util.function.Function;19public class 4 {20 private static final Cache<String, String> cache = new Cache<>(10_000);21 public static String cachedFunction(String arg) {22 return cache.get(arg, s -> {23 return "result for " + s;24 });25 }26}27import org.testing

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Webtau automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Test Your Web Or Mobile Apps On 3000+ Browsers

Signup for free

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful