完整读完Google的三篇谈Hackable Projects的文章,以及一篇从Test Pyramid看UnitTest的比重、一篇谈Optimal Logging的文章,感觉这5篇在测试、日志两个方面对工程的速度、大小、解耦三个方面做了深入而系统的解读,非常值得一看,专业的测试角度剖析工程,有一种解剖学的感觉,这刷新了我对测试的理解,我估计职业的开发工程师里能有这么全面的视角的估计比例本就不高。此处简要摘录做个笔记,结合自己的经验体会,在这方面会有系统化的视角。

Hackable Projects - Pillar 1: Code Health

  • Readable Code

  • Presubmit Test
  • Single Branch And Reducing Risk
  • Loose Couping
    • SOLID
  • Aggressively Reduce Technical Debt
    • dependency enforcement

Hackable Projects - Pillar 2: Debuggability

Hackable Projects - Pillar 3: Infrastructure

  • Build Systems Speed

    • Replace make with ninja
    • Use the gold linker instead of ld
    • Detect and delete dead code in your project
    • Reduce the number of dependencies
    • enforce dependency rules so new ones are not added lightly
    • Give the developers faster machines
    • Use distributed build, which is available with many open-source continuous integration systems
  • feedback cycles kill hackability, for many reasons:
    • Build and test times longer than a handful of seconds cause many developers’ minds to wander, taking them out of the zone.
    • Excessive build or release times* makes tinkering and refactoring much harder.
  • The main axes of improvement are:
    • Reduce the amount of code being compiled.
    • Replace tools with faster counterparts.
    • Increase processing power, maybe through parallelization or distributed systems.
  • Continuous Integration and Presubmit Queues
    • You should build and run tests on all platforms you release on.
    • At a minimum, you should build and test on all platforms, but it’s even better if you do it in presubmit.
    • Chromium:It has developed over the years so that a normal patch builds and tests on about 30 different build configurations before commit.
  • Test Speed:
    • if it takes more than a minute to execute, its value is greatly diminished
    • Sharding and parallelization.
    • Continuously measure how long it takes to run one build+test cycle in your continuous build, and have someone take action when it gets slower.
    • Remove tests that don’t pull their weight.
    • If you have tests that bring up a local server stack, for instance inter-server integration tests, making your servers boot faster is going to make the tests faster as well.
  • Workflow Speed
    • You need to keep track of your core workflows as your project grows.
    • Your version control system may work fine for years, but become too slow once the project becomes big enough.
  • Release Often
  • Easy Reverts:
    • If you look in the commit log for the Chromium project, you will see that a significant percentage of the commits are reverts of a previous commits.
  • Performance Tests: Measure Everything:
    • Is it critical that your app starts up within a second?
    • Should your app always render at 60 fps when it’s scrolled up or down?
    • Should your web server always serve a response within 100 ms?
    • Should your mobile app be smaller than 8 MB?

Just Say No to More End-to-End Tests

Good ideas often fail in practice, and in the world of testing, one pervasive good idea that often fails in practice is a testing strategy built around end-to-end tests.

What Went Wrong for End-to-End test:

  • The team completed their coding milestone a week late (and worked a lot of overtime).
  • Finding the root cause for a failing end-to-end test is painful and can take a long time.
  • Partner failures and lab failures ruined the test results on multiple days.
  • Many smaller bugs were hidden behind bigger bugs.
  • End-to-end tests were flaky at times.
  • Developers had to wait until the following day to know if a fix worked or not.

The True Value of Tests:

  • A failing test does not directly benefit the user.
  • A bug fix directly benefits the user.

Building the Right Feedback Loop:

  • It's fast
  • It's reliable(smaller)
  • It isolates failures

Think Smaller, Not Larger

Unit Test

Unit tests take a small piece of the product and test that piece in isolation.

  • Unit tests are fast.
  • Unit tests are reliable.
  • Unit tests isolate failures.

Writing effective unit tests requires skills in areas:

  • dependency management
  • mocking
  • hermetic testing

With end-to-end tests, you have to wait: first for the entire product to be built, then for it to be deployed, and finally for all end-to-end tests to run.

Although end-to-end tests do a better job of simulating real user scenarios, this advantage quickly becomes outweighed by all the disadvantages of the end-to-end feedback loop:

  • NOT fast
  • NOT Reliable
  • NOT Isolates Failures

Integration Tests

Unit tests do have one major disadvantage: even if the units work well in isolation, you do not know if they work well together.

But even then, you do not necessarily need end-to-end tests. For that, you can use an integration test.

An integration test takes a small group of units, often two units, and tests their behavior as a whole, verifying that they coherently work together.

Testing Pyramid

Even with both unit tests and integration tests, you probably still will want a small number of end-to-end tests to verify the system as a whole.

To find the right balance between all three test types, the best visual aid to use is the testing pyramid:

As a good first guess, Google often suggests a 70/20/10 split: 70% unit tests, 20% integration tests, and 10% end-to-end tests.

Optimal Logging

Channeling Goldilocks:

Massive, disk-quota burning logs are a clear indicator that little thought was put in to logging.

  • Never log too much:

Goals of logging:

  • help with bug investigation
  • event confirmation

If your log can’t explain the cause of a bug or whether a certain transaction took place, you are logging too little.

  • The only thing worse than logging too much is logging too little.

Good things to log:

  • Important startup configuration
  • Errors
  • Warnings
  • Changes to persistent data
  • Requests and responses between major system components
  • Significant state changes
  • User interactions
  • Calls with a known risk of failure
  • Waits on conditions that could take measurable time to satisfy
  • Periodic progress during long-running tasks
  • Significant branch points of logic and conditions that led to the branch
  • Summaries of processing steps or events from high level functions - Avoid logging every step of a complex process in low-level functions.

Bad things to log:

  • Function entry - Don’t log a function entry unless it is significant or logged at the debug level.
  • Data within a loop - Avoid logging from many iterations of a loop. It is OK to log from iterations of small loops or to log periodically from large loops.
  • Content of large messages or files - Truncate or summarize the data in some way that will be useful to debugging.
  • Benign errors - Errors that are not really errors can confuse the log reader. This sometimes happens when exception handling is part of successful execution flow.
  • Repetitive errors - Do not repetitively log the same or similar error. This can quickly fill a log and hide the actual cause. Frequency of error types is best handled by monitoring. Logs only need to capture detail for some of those errors.

There is More Than One Level

Test logs should always contain:

  • Test execution environment
  • Initial state
  • Setup steps
  • Test case steps
  • Interactions with the system
  • Expected results
  • Actual results
  • Teardown steps

Conditional Verbosity With Temporary Log Queues

to create temporary, in-memory log queues. Throughout processing of a transaction, append verbose details about each step to the queue. If the transaction completes successfully, discard the queue and log a summary. If an error is encountered, log the content of the entire queue and the error.

Failures and Flakiness Are Opportunities

If you have a hard time determining the cause of an error, it's a great opportunity to improve your logging. Before fixing the problem, fix your logging so that the logs clearly show the cause.

Might As Well Log Performance Data

Logged timing data can help debug performance issues.

Following the Trail Through Many Threads and Processes

You should create unique identifiers for transactions that involve processing across many threads and/or processes

Monitoring and Logging Complement Each Other

a monitoring alert is simply a trigger for you to start an investigation. Monitoring shows the symptoms of problems. Logs provide details and state on individual transactions

读书摘要,Hackable Projects的更多相关文章

  1. 《Effective C++》读书摘要

    http://www.cnblogs.com/fanzhidongyzby/archive/2012/11/18/2775603.html 1.让自己习惯C++ 条款01:视C++为一个语言联邦 条款 ...

  2. 读书摘要:第七章 闩Suan锁和自旋锁

    摘要: 1.闩锁就像是内存上的锁,随着越来越多的线程参与进来,他们争相访问同一块内存,导致堵塞.2.自旋锁就是闩锁,不同之处是如果访问的内存不可用,它将继续检查轮询一段时间.3.拴锁和自旋锁是我们无法 ...

  3. JAVA 技术手册 卷1 第十四章『多线程』 读书摘要

    什么是线程 进程受CPU时间片的轮转调度,进而予人多任务并发的感觉. 线程在更低层次上扩展多任务概念,一个进程通常包含多个线程. 进程各自数据独立,而线程共享数据. 数据独立使进程相互通信变得繁难,共 ...

  4. 读书摘要,一种新的黑客文化:programming is forgetting

    http://opentranscripts.org/transcript/programming-forgetting-new-hacker-ethic/ 这篇文章非常有意思,作者是一个计算机教师, ...

  5. 《Java多线程核心技术》读书摘要

    Chapter1: 进程是操作系统管理的基本单元,线程是CPU调到的基本单元. 调用myThread.run()方法,JVM不会生成新的线程,myThread.start()方法调用两次JVM会报错. ...

  6. Java设计模式(Design Patterns In Java)读书摘要——第1章 绪论

    为何需要模式 模式是做事的方法,是实现目标,研磨技术的方法.通俗点说,模式是为了解决某个行业的某个问题的有效的方法或技艺. 为何需要设计模式 为了提升代码的水准,是代码变得简洁而易用.模式是一种思想, ...

  7. JAVA设计模式(DESIGN PATTERNS IN JAVA)读书摘要 第1部分接口型模式——第4章 外观(Facade)模式

    外观模式就类似于一个工具包,一个类对应一个功能. 外观模式的意图是为子系统提供一个接口,便于它的使用. 书中给出的例子是画一个哑弹的飞行路径, 初始的类的设计是这样的,看下图, ShowFlight类 ...

  8. HeadFirst SQL 读书摘要

    数据库都是用 圆柱形表示的. 数据库中包含表 表中包含行和列 行又叫记录record,  列又叫 字段field 创建数据库 create database mypipe_l; 选择数据库 use m ...

  9. Tomcat权威指南-读书摘要系列10

    Tomcat集群 一些集群技术 DNS请求分配 TCP网络地址转换请求分配 Mod_proxy_balance负载均衡与故障复原 JDBC请求分布与故障复原

随机推荐

  1. IO流03--毕向东JAVA基础教程视频学习笔记

    提要 16 读取转换流17 写入转换流18 流操作规律-119 流操作规律-220 改变标准输入输出设备21 异常的日志信息22 系统信息 16 读取转换流 字符流体系中的InputStreamRea ...

  2. Tomcat:Custom a common error page valve for all web application in tomcat

    如果在一个Tomcat Server上会部署多个Web应用,又希望这多个Web应用共用一套错误页面,而不是使用默认的错误页面.就需要自定义错误页面了. 在每个web应用中都可以通过error-page ...

  3. Java 使用 JRegistry-1.8.1 读取和设置 windows 注册表

    在一个监控相关的Java项目中,需要读取windows系统的注册表,搜索到使用 JRegistery 可以解决.代码如下: /** * @author digdeep@126.com */ publi ...

  4. 安装Mysql 5.7.1

    现在安装MySQL变成了一件非常人性化的事情,因为有了MySQL-installer这个工具,它可以帮助我们全程安装MySQL.     下面我来简单介绍一下如何使用,以供新手学习:     .首先下 ...

  5. 记录Sqlserver2012附加Sqlserver2008的数据库出错的解决方案

    一.摘要 最近在实验里面用台式编写好了一个软件,想移植到家里的笔记本上.在附加数据的时候却出现了错误,具体也没有提示什么错误,反正就是附加失败了. 二.解决方案 在网上看了一些资料,有的说[低版本不能 ...

  6. sql server ,sql语句,练习笔记

    一.删除冗余记录 DELETE [学生表] WHERE id NOT IN (SELECT MIN(id) FROM [学生表] GROUP BY [学号],[姓名],[课程编号],[课程],[分数] ...

  7. React-Native测试报告

     React-native 使用js编写android和ios程序,前端时间开始支持android,本人根据官方的教程,先安装开发环境,然后运行hello world,最后看了下官方提供的实例程序UI ...

  8. Linux命令行上传文件到百度网盘

    利用bpcs_uploader你可以自动将VPS主机上的文件上传到百度网盘中,同时也可以从百度网盘中下载文件到VPS主机上,让你的文件安全地"住"在百度云中.[font=Tahom ...

  9. php遍历循环数组实现方法

    简单利用foreach for list each while来遍历数组,包括普通的一维数组与二维数组遍历方法,下面详细的介绍了每个函数的使用方法. $foreach = array(1,2,3); ...

  10. /usr/include/sys/types.h:62: error: conflicting types for ‘dev_t’

    /usr/include/sys/types.h:62: error: conflicting types for ‘dev_t’/usr/include/linux/types.h:13: erro ...