woothee/woothee-testset
Composer 安装命令:
composer require woothee/woothee-testset
包简介
Set of test case for woothee project. Project Woothee is multi-language user-agent strings parsers.
README 文档
README
Project Woothee is multi-language user-agent strings parsers.
You can try it on demo site: http://woothee.github.io/
Why new project?
We needs just same logic over 2 or more programming languages, for use on various frameworks, middlewares and environments.
Most important data of this project is only single set of return values, and set of test cases, for equality of results of another languages implementations.
Implementations:
Versions
- v1.13.0
- Add Android OS version (Android 11~)
- v1.12.0
- Add Samsung Browser
- Add Google's AdsBot
- v1.11.1
- Update the GSA version in testsets
- v1.11.0
- Add Google Search App
- v1.10.0
- Add Microsoft Edge (based on Chromium), Edge for iOS/Android
- v1.9.0
- Add Android 9
- v1.8.0
- Add Yandex Browser
- v1.7.0
- Add trendictionbot crawler
- Add Yeti 1.1 crawler user agent tests
- v1.6.0
- Add Android Webview
- Add curl HTTP library
- v1.5.0
- Add BingPreview crawler
- v1.4.0
- Add Vivaldi
- v1.3.0
- Add Firefox for iOS
- v1.2.1
- Fix testset bug for BlackBerry 10
- v1.2.0
- Add Microsoft Edge, Webview of mobile phones
- Add Windows 10, BlackBerry 10
- Add Twitterbot
- v1.1.0
- Add specs for blank input data
- v1.0.1
- Add variations of MSIE11
- v1.0.0
- Some of implementations are not v1 yet.
Version numbers are used as:
- vX.Y.Z
- X and Y is major/minor number to control specs of dataset/testsets
- Z is patch number for each language implementation release control
- Z is also used for bug fix control of testsets (versions of each language implementations should be bumped up too)
Implementations
- Java (and Hive UDF)
- Perl
- Ruby
- Python
- Javascript (Node.js or browser)
- PHP
- Golang
- Rust
SYNOPSIS
in Java: (use java/woothee.jar)
// import is.tagomor.woothee.Classifier; // import is.tagomor.woothee.DataSet; Map r = Classifier.parse("user agent string"); r.get("name") // => name of browser (or string like name of user-agent) r.get("category") // => "pc", "smartphone", "mobilephone", "appliance", "crawler", "misc", "unknown" r.get("os") // => os from user-agent, or carrier name of mobile phones r.get("version"); // => version of browser, or terminal type name of mobile phones r.get("os_version"); // => "NT 6.3" (for Windows), "10.8.3" (for OSX), "8.0.1" (for iOS), ....
in Hive: (copy woothee.jar into your CLASSPATH, and create function)
-- add jar to classpath add jar woothee.jar; -- create function CREATE TEMPORARY FUNCTION parse_agent as 'is.tagomor.woothee.hive.ParseAgent'; -- count visits of bots SELECT parsed_agent['name'] AS botname, COUNT(*) AS cnt FROM ( SELECT parse_agent(user_agent) AS parsed_agent FROM table_name WHERE date='today' ) x WHERE parsed_agent['category'] = 'crawler' GROUP BY parsed_agent['name'] ORDER BY cnt DESC LIMIT 1000;
in Perl: (cpanm Woothee)
use Woothee; Woothee::parse("Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0)"); # => {'name'=>"Internet Explorer", 'category'=>"pc", 'os'=>"Windows 7", 'version'=>"8.0", 'vendor'=>"Microsoft", 'os_version'=>"NT 6.1"}
in Ruby: (gem install woothee)
require 'woothee' Woothee.parse("Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0)") # => {:name=>"Internet Explorer", :category=>:pc, :os=>"Windows 7", :version=>"8.0", :vendor=>"Microsoft", :os_version=>"NT 6.1"}
in Python:
import woothee woothee.parse("Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0)") # => {'name': 'Internet Explorer', 'category': 'pc', 'os': 'Windows 7', 'version': '8.0', 'vendor': 'Microsoft'}
in Javascript(HTML, copy from release/woothee.js)
<script src="./your/own/path/woothee.js"></script> <script> woothee.parse('Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0)') // => {name: 'Internet Explorer', category: 'pc', os: 'Windows 7', version: '8.0', vendor: 'Microsoft', os_version: 'NT 6.1'} </script>
in Node.js (npm install woothee)
var woothee = require('woothee'); woothee.parse('Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0)') // => {name: 'Internet Explorer', category: 'pc', os: 'Windows 7', version: '8.0', vendor: 'Microsoft', os_version: 'NT 6.1'}
in PHP (composer require woothee/woothee:*)
<?php include __DIR__ . '/vendor/autoload.php'; $classifier = new \Woothee\Classifier; $classifier->parse('Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0)'); // => ['name' => 'Internet Explorer', 'category' => 'pc', 'os' => 'Windows 7', 'version' => '8.0', 'vendor' => 'Microsoft']
in Rust:
extern crate woothee; use woothee::parser::Parser; fn main() { let parser = Parser::new(); let result = parser.parse("Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0)"); println!("{:?}", result); } // => Some(WootheeResult { name: "Internet Explorer", category: "pc", os: "Windows 7", os_version: "NT 6.1", browser_type: "UNKNOWN", version: "8.0", vendor: "Microsoft" })
Todo
- 'mobilephone' means Japanese mobile phone groups
- For multi-region code, domestic pattern specifier (or another mechanism) needed
FAQ
- What's Woothee?
Authors
- TAGOMORI Satoshi tagomoris@gmail.com
License
Copyright 2012- TAGOMORI Satoshi (tagomoris)
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
woothee/woothee-testset 适用场景与选型建议
woothee/woothee-testset 是一款 基于 Ruby 开发的 Composer 扩展包,目前已累计 127.44k 次下载、GitHub Stars 达 317, 最近一次更新时间为 2015 年 11 月 07 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 woothee/woothee-testset 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 woothee/woothee-testset 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 127.44k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 318
- 点击次数: 22
- 依赖项目数: 2
- 推荐数: 1
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2015-11-07