Giter Site home page Giter Site logo

rust-httpc-test's Introduction

Minimalistic HTTP Client Test Utilities.

  • Built on top of reqwest.
  • Still under development 0.0.x.
  • Optimized for testing convenience, not for performance.
  • Do not use for production code, just for unit or integration tests.
  • For production code (apps, services, ...) use the underlying reqwest library and its utilities.

WARNING - API might change during 0.0.x development.

use anyhow::Result;
use serde_json::json;

#[tokio::test]
async fn test_simple_base() -> httpc_test::Result<()> {
	// Create a new httpc test client with a base URL (will be prefixed for all calls)
	// The client will have a cookie_store.
	let hc = httpc_test::new_client("http://localhost:8080")?;

	// Simple get
	let res = hc.do_get("/hello").await?;
	// Pretty print the result (status, headers, response cookies, client cookies, body)
	res.print().await?;

	// Another get
	let res = hc.do_get("/context.rs").await?;
	// Pretty print but do not print the body 
	res.print_no_body().await?;

	// Do a json post
	// In this case, server might do a Set-Cookie for the auth-token, 
	// and the client cookie will be updated.
	let res = hc
		.do_post_json(
			"/api/login",
			json!({
				"username": "admin",
				"pwd": "welcome"
			}),
		)
		.await?;
	res.print().await?;

	// Another post (with the cookie store updated from the login request above )
	let res = hc
		.do_post_json(
			"/api/tickets",
			json!({
				"subject": "ticket 01"
			}),
		)
		.await?;
	res.print().await?;

	// do_put_json, do_patch_json also available.


	// Another post
	let res = hc.do_get("/api/tickets").await?;
	res.print().await?;

	Ok(())
}

rust-httpc-test's People

Contributors

jeremychone avatar defic avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.